:root {
  --ink: #111313;
  --muted: #626866;
  --line: #e4e7e3;
  --paper: #eeeeee;
  --white: #ffffff;
  --accent: #1778d6;
  --accent-2: #6aaee8;
  --soft: #f1f1f1;
  --flow-arrow: #B2B6BA;
  --shadow: 0 24px 60px rgba(17, 19, 19, 0.1);
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: var(--font-sans);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  letter-spacing: 0;
}

.site-hydrating [data-home-hero-carousel],
.site-hydrating [data-home-posters],
.site-hydrating [data-featured-products],
.site-hydrating [data-products-hero-carousel],
.site-hydrating [data-blog-posts],
.site-hydrating [data-blog-detail],
.site-hydrating [data-hot-product],
.site-hydrating [data-related-articles],
.site-hydrating [data-custom-solutions],
.site-hydrating [data-custom-service-cards],
.site-hydrating [data-custom-process-tabs],
.site-hydrating [data-about-hero-image],
.site-hydrating [data-about-intro-building-image],
.site-hydrating [data-about-intro-production-image],
.site-hydrating [data-about-intro-warehouse-image],
.site-hydrating [data-about-intro-reception-image],
.site-hydrating [data-about-process-image],
.site-hydrating [data-about-factory-image],
.site-hydrating .sb-about-manufacturing,
.site-hydrating [data-about-production-cards],
.site-hydrating [data-product-detail],
.site-hydrating [data-shop-products] {
  opacity: 0;
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

img[hidden] {
  display: none;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: 92px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(17, 19, 19, 0.06);
  background: rgba(238, 238, 238, 0.82);
  backdrop-filter: blur(18px) saturate(1.2);
}

.site-header-inner {
  display: grid;
  grid-template-columns: max-content minmax(170px, 210px) minmax(280px, 1fr) max-content;
  align-items: center;
  gap: clamp(18px, 2vw, 34px);
  width: min(1560px, 100%);
  min-height: 92px;
  margin: 0 auto;
}

.site-header:not(:has(.site-header-inner)) {
  display: grid;
  grid-template-columns: max-content minmax(170px, 210px) minmax(280px, 1fr) max-content;
  align-items: center;
  gap: clamp(18px, 2vw, 34px);
  width: 100%;
  margin: 0;
  padding-right: max(16px, calc((100% - 1560px) / 2));
  padding-left: max(16px, calc((100% - 1560px) / 2));
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  border-radius: 999px;
  background: var(--ink);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-toggle span {
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-links,
.header-actions,
.language,
.hero-actions,
.footer-links,
.footer-contact {
  display: flex;
  align-items: center;
}

.brand {
  justify-self: start;
  color: #050505;
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
}

.brand-logo {
  display: block;
  width: 158px;
  height: auto;
  object-fit: contain;
}

.site-header .brand {
  display: inline-flex;
  align-items: center;
}

.header-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  align-items: center;
  justify-self: start;
  width: clamp(190px, 12vw, 210px);
  min-height: 38px;
  border: 1px solid rgba(17, 19, 19, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  overflow: hidden;
}

.header-search:focus-within {
  border-color: rgba(23, 120, 214, 0.7);
  background: rgba(255, 255, 255, 0.92);
}

.header-search input {
  min-width: 0;
  width: 100%;
  height: 36px;
  min-height: 0;
  padding: 0 4px 0 16px;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-size: 13px;
  font-weight: 500;
}

.header-search input::placeholder {
  color: rgba(98, 104, 102, 0.66);
}

.header-search button {
  position: relative;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-right: 2px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.header-search button::before,
.header-search button::after {
  content: "";
  position: absolute;
  display: block;
}

.header-search button::before {
  width: 11px;
  height: 11px;
  border: 2px solid rgba(23, 120, 214, 0.88);
  border-radius: 999px;
  transform: translate(-2px, -2px);
}

.header-search button::after {
  width: 7px;
  height: 2px;
  border-radius: 999px;
  background: rgba(23, 120, 214, 0.88);
  transform: translate(6px, 6px) rotate(45deg);
}

.header-search button:hover,
.header-search button:focus-visible {
  background: rgba(23, 120, 214, 0.1);
}

.nav-links {
  justify-self: center;
  gap: clamp(18px, 2.1vw, 34px);
  color: #111;
  font-size: 16px;
  font-weight: 600;
}

.nav-links a:hover,
.nav-links a[aria-current="page"],
.footer-links a:hover {
  color: #1778d6;
}

.header-actions {
  justify-self: end;
  gap: 12px;
}

.language {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
}

.language summary {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  cursor: pointer;
  list-style: none;
}

.language summary::-webkit-details-marker {
  display: none;
}

.language summary::before {
  color: var(--ink);
  content: attr(data-language);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.language summary:not([data-language])::before {
  content: "EN";
}

.language.is-translating summary {
  cursor: progress;
  opacity: 0.65;
}

.language.is-translating button {
  cursor: progress;
  opacity: 0.55;
}

.language-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 30;
  display: none;
  min-width: 74px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 36px rgba(17, 19, 19, 0.14);
}

.language[open] .language-menu {
  display: grid;
  gap: 4px;
}

.language button {
  min-width: 58px;
  min-height: 30px;
  border: 0;
  border-radius: 6px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-size: 13px;
  font-weight: 800;
}

.language .active {
  color: var(--white);
  background: #1778d6;
}

.quote-btn,
.primary-btn,
.secondary-btn,
.cart-link,
.cart-btn,
.inquiry-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
}

.quote-btn,
.primary-btn,
.inquiry-form button {
  color: var(--white);
  background: var(--accent);
}

.quote-btn {
  padding: 0 18px;
  font-size: 14px;
}

.site-header .quote-btn {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid #1778d6;
  color: #1778d6;
  background: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.site-header .quote-btn:hover {
  border-color: #1778d6;
  color: var(--white);
  background: #1778d6;
}

.cart-link {
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.cart-link span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  color: var(--white);
  background: #1778d6;
  font-size: 12px;
}

.primary-btn,
.secondary-btn {
  padding: 0 24px;
}

.primary-btn {
  border: 0;
  cursor: pointer;
}

.cart-btn {
  padding: 0 24px;
  border: 1px solid #1778d6;
  color: #1778d6;
  background: var(--white);
  cursor: pointer;
}

.secondary-btn {
  border: 1px solid rgba(17, 19, 19, 0.16);
  color: var(--ink);
  background: var(--white);
}

.hero {
  display: grid;
  grid-template-columns: minmax(360px, 520px) minmax(720px, 1150px);
  align-items: stretch;
  justify-content: center;
  gap: 48px;
  min-height: min(760px, calc(100vh - 76px));
  padding: 56px 30px 24px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section,
.split-section,
.process-section,
.inquiry {
  width: min(1560px, calc(100% - 32px));
  margin: 0 auto;
}

.site-footer {
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: #080909;
}

.site-footer-inner {
  width: min(1560px, calc(100% - 32px));
  margin: 0 auto;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(46px, 6vw, 84px);
  line-height: 0.96;
  font-weight: 700;
}

.hero h1 {
  max-width: 560px;
  font-size: clamp(42px, 4.5vw, 68px);
  line-height: 1.04;
}

.hero-text {
  max-width: 630px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.6;
}

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

.hero-points {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.hero-points li {
  position: relative;
  padding-left: 18px;
}

.hero-points li::before {
  position: absolute;
  left: 0;
  color: var(--accent);
  content: "•";
}

.hero-media {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1150px;
  min-height: 620px;
  height: 100%;
  border-radius: 8px;
  background: var(--soft);
  box-shadow: var(--shadow);
}

.hero-media img,
.hero-media video {
  position: absolute;
  inset: 0;
  opacity: 0;
  object-fit: cover;
  transition: opacity 620ms ease;
  width: 100%;
  height: 100%;
}

.hero-media img.active,
.hero-media video.active,
.hero-media img:only-of-type {
  opacity: 1;
}

.hero-media::after {
  content: none;
}

.hero-media-dots {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 0 24px;
}

.hero-media-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(17, 19, 19, 0.28);
  cursor: pointer;
}

.hero-media-dots button.active {
  width: 26px;
  background: var(--ink);
}

.product-copy p,
.benefit-grid span,
.process-row span {
  display: block;
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section {
  padding: 92px 40px;
}

.product-section {
  padding-top: 56px;
}

.intro {
  max-width: 920px;
  text-align: center;
}

.poster-carousel {
  position: relative;
  width: min(1180px, calc(100% - 80px));
  height: min(620px, 72vh);
  min-height: 460px;
  margin: 28px auto 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.poster-track,
.poster-slide {
  height: 100%;
}

.poster-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 520ms ease;
  pointer-events: none;
}

.poster-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.poster-slide[data-url] {
  cursor: pointer;
}

.poster-image-link,
.poster-slide img {
  position: absolute;
  inset: 0;
}

.poster-image-link {
  z-index: 0;
  display: block;
}

.poster-slide img {
  filter: saturate(0.92);
}

.poster-slide::after {
  content: none;
}

.home-page {
  background: var(--paper);
}

.home-body .site-header {
  position: fixed;
  right: 0;
  left: 0;
  min-height: 88px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.54);
  box-shadow: 0 12px 34px rgba(5, 20, 35, 0.08);
  backdrop-filter: blur(18px) saturate(1.16);
}

.home-body .site-header .brand,
.home-body .site-header .nav-links,
.home-body .site-header .cart-link {
  color: #111;
}

.home-body .language summary,
.home-body .site-header .cart-link,
.home-body .site-header .quote-btn {
  background: rgba(255, 255, 255, 0.58);
}

.home-page .hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 168px min(9vw, 170px) 96px;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #070b0d;
  box-shadow: none;
}

.home-page .hero::after {
  content: none;
}

.home-page .hero-copy {
  position: relative;
  z-index: 3;
  width: min(720px, 100%);
  color: var(--white);
}

.home-page .eyebrow,
.home-page .section-kicker {
  color: #1778d6;
  letter-spacing: 0.08em;
}

.home-page .hero h1 {
  max-width: 700px;
  font-size: clamp(42px, 4.1vw, 64px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0;
}

.home-page .hero-text {
  max-width: 520px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: 1.45;
}

.home-page .quote-btn,
.home-page .inquiry-form button {
  background: #1778d6;
}

.home-page .hero-actions {
  gap: 16px;
  margin-top: 56px;
}

.hero-category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 620px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.hero-category-list li {
  min-height: 30px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.12);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}

.home-page .hero .primary-btn {
  min-width: 154px;
  min-height: 48px;
  border-radius: 5px;
  color: var(--white);
  background: #1778d6;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.home-page .hero .primary-btn:hover {
  background: #0f62b8;
}

.home-page .site-header .quote-btn {
  border-color: #1778d6;
  color: #1778d6;
  background: rgba(255, 255, 255, 0.68);
}

.home-page .site-header .quote-btn:hover {
  color: var(--white);
  background: #1778d6;
}

.home-page .secondary-btn {
  min-height: 48px;
  border-color: rgba(255, 255, 255, 0.56);
  border-radius: 5px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 900;
}

.home-page .hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  max-width: none;
  min-height: 0;
  height: 100%;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.home-page .hero-media img,
.home-page .hero-media video {
  filter: saturate(1.06) contrast(1.03);
}

.home-page .hero-media-dots {
  z-index: 4;
  right: auto;
  bottom: 24px;
  left: 50%;
  justify-content: center;
  transform: translateX(-50%);
}

.home-page .hero-media-dots button {
  width: 9px;
  height: 9px;
  background: rgba(255, 255, 255, 0.58);
}

.home-page .hero-media-dots button.active {
  background: var(--white);
}

.home-page .poster-carousel {
  width: min(1560px, calc(100% - 32px));
  height: 430px;
  min-height: 0;
  margin-top: 28px;
  border: 1px solid #dbe7f4;
  background: var(--white);
  box-shadow: none;
}

.home-page .poster-slide::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(90deg, rgba(4, 32, 75, 0.72), rgba(4, 32, 75, 0.18));
}

.home-page .poster-copy {
  justify-content: center;
  width: min(620px, 100%);
  padding: 44px;
}

.home-page .poster-copy .section-kicker {
  color: #8ec9ff;
}

.home-page .poster-copy h2 {
  font-size: clamp(30px, 3.8vw, 48px);
  font-weight: 900;
}

.home-category-section {
  width: min(1560px, calc(100% - 32px));
  margin: 28px auto 0;
}

.home-category-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
}

.home-category-heading h2,
.home-category-heading p {
  margin: 0;
}

.home-category-heading h2 {
  color: #2F3337;
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 900;
}

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

.home-category-card {
  position: relative;
  display: block;
  min-height: 190px;
  aspect-ratio: 1 / 1.05;
  overflow: hidden;
  border-radius: 3px;
  background: #101418;
}

.home-category-card::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(180deg, rgba(17, 19, 19, 0.04), rgba(17, 19, 19, 0.68)),
    linear-gradient(0deg, rgba(17, 19, 19, 0.18), rgba(17, 19, 19, 0.18));
  transition: background 0.22s ease;
}

.home-category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.home-category-copy {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 2px;
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
}

.home-category-copy strong {
  font-size: 12px;
  font-weight: 900;
  line-height: 1.05;
}

.home-category-copy small {
  font-size: 10px;
  font-weight: 850;
  line-height: 1;
}

.home-category-card:hover img,
.home-category-card:focus-visible img {
  transform: scale(1.045);
}

.home-category-card:hover::before,
.home-category-card:focus-visible::before {
  background:
    linear-gradient(180deg, rgba(17, 19, 19, 0.02), rgba(17, 19, 19, 0.76)),
    linear-gradient(0deg, rgba(17, 19, 19, 0.1), rgba(17, 19, 19, 0.1));
}

.home-page .section,
.home-page .split-section,
.home-page .process-section,
.home-page .inquiry {
  width: min(1560px, calc(100% - 32px));
  margin-top: 28px;
  padding: 46px 26px;
  border: 1px solid #dbe7f4;
  border-radius: 8px;
  background: var(--white);
}

.home-page .section-heading {
  align-items: flex-end;
  margin-bottom: 24px;
}

.home-page .section-heading h2,
.home-page .split-section h2,
.home-page .process-section h2,
.home-page .inquiry h2 {
  font-weight: 900;
  color: #2F3337;
}

.section-subtitle {
  display: block;
  max-width: 720px;
  margin-top: 10px;
  color: #667789;
  font-size: 15px;
  line-height: 1.55;
}

.home-page .section-heading a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--white);
  background: #1778d6;
}

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

.home-page .product-card {
  border-color: #dbe7f4;
  box-shadow: 0 12px 28px rgba(17, 19, 19, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.home-page .product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(17, 19, 19, 0.14);
}

.home-page .product-card img {
  height: 300px;
}

.home-page .product-copy {
  padding: 18px;
}

.home-page .product-copy p,
.home-page .benefit-grid span,
.home-page .process-row span {
  color: #1778d6;
}

.home-page .split-section {
  grid-template-columns: minmax(0, 0.75fr) minmax(520px, 1.25fr);
  border-top: 1px solid #dbe7f4;
  border-bottom: 1px solid #dbe7f4;
}

.home-page .benefit-grid div,
.home-page .process-row div {
  min-height: 0;
  border-color: #dbe7f4;
  background: #f2f2f2;
}

.home-page .benefit-grid h3,
.home-page .process-row h3 {
  color: #2F3337;
  font-weight: 900;
}

.home-page .factory-flow {
  border-color: #dbe7f4;
  background: #f7f7f7;
}

.home-page .factory-flow > h3 {
  color: #2F3337;
  box-shadow: 0 10px 26px rgba(23, 120, 214, 0.14);
}

.home-page .inquiry {
  grid-template-columns: minmax(0, 0.86fr) minmax(480px, 1.14fr);
  margin-bottom: 28px;
}

.home-page .inquiry-form {
  border-color: #dbe7f4;
  background: #f2f2f2;
  box-shadow: 0 16px 36px rgba(17, 19, 19, 0.08);
}

.home-page .product-section {
  position: relative;
  overflow: hidden;
}

.home-page .product-section::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 6px;
  content: "";
  background: linear-gradient(90deg, #1778d6, #6aaee8);
}

.home-page .featured-product-grid {
  margin-bottom: 52px;
}

.home-page .product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  background: #fff;
}

.home-page .product-card .catalog-image-link,
.home-page .product-card > img {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 16px 0;
  background: linear-gradient(180deg, #f3f3f3, #ffffff);
}

.home-page .product-card .catalog-image-link img,
.home-page .product-card > img {
  width: 100%;
  max-width: 100%;
  height: 260px;
  max-height: 260px;
  object-fit: contain;
  object-position: center center;
  border-radius: 6px;
}

.home-page .product-card .catalog-image-link img {
  width: auto;
}

.home-page .product-copy {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 150px;
}

.home-page .product-copy h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 900;
}

.home-page .shop-price {
  margin-top: 2px;
  color: #1778d6;
}

.home-page .product-card .product-model,
.home-page .product-card .shop-price {
  justify-self: center;
  text-align: center;
}

.home-page .product-card .product-copy,
.home-page .product-card .product-copy h3,
.home-page .product-card .product-copy span {
  text-align: center;
}

.home-page .product-grid:not(.featured-product-grid) .product-copy > p {
  display: none;
}

.home-page .split-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(4, 40, 91, 0.96), rgba(16, 112, 210, 0.9)),
    #4B5560;
}

.home-page .split-section .section-kicker,
.home-page .split-section h2,
.home-page .split-section p {
  color: var(--white);
}

.home-page .split-section > div:first-child {
  align-self: center;
}

.home-page .benefit-only-section {
  grid-template-columns: minmax(0, 1fr);
}

.home-page .benefit-only-section .benefit-grid {
  width: 100%;
}

.home-page .benefit-grid {
  gap: 14px;
}

.home-page .benefit-grid div {
  position: relative;
  padding: 22px;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
}

.home-page .benefit-grid span {
  color: #a9d7ff;
}

.home-page .benefit-grid h3,
.home-page .benefit-grid p {
  color: var(--white);
}

.home-page .process-section {
  background: #f2f2f2;
}

.company-tabs-section {
  width: min(1560px, calc(100% - 72px));
  margin: 22px auto 0;
  padding: 70px 0 64px;
  background: var(--white);
}

.company-tabs-heading {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 34px;
  text-align: center;
}

.company-tabs-heading .section-kicker {
  margin-bottom: 10px;
}

.company-tabs-heading h2 {
  margin: 0;
  color: #111313;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
  font-weight: 900;
  text-transform: none;
}

.company-tabs-heading h2 span {
  color: #9aa4a9;
  font-weight: 500;
}

.company-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: calc(100% - 108px);
  margin: 0 auto;
  border: 1px solid #e1e7ec;
  border-bottom: 0;
  background: #f2f2f2;
}

.company-tabs button {
  min-height: 62px;
  padding: 0 18px;
  border: 0;
  border-right: 1px solid #e1e7ec;
  color: #4f5c62;
  background: transparent;
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
  text-align: center;
  transition: color 0.18s ease, background 0.18s ease;
}

.company-tabs button:last-child {
  border-right: 0;
}

.company-tabs button:hover,
.company-tabs button:focus-visible {
  color: #1778d6;
  background: #ffffff;
}

.company-tabs button.active {
  color: var(--white);
  background: #1778d6;
}

.company-tab-panels {
  width: calc(100% - 108px);
  margin: 0 auto;
  border: 1px solid #e1e7ec;
  background: #f3f3f3;
}

.company-tab-panel {
  display: grid;
  grid-template-columns: minmax(520px, 1fr) minmax(520px, 1fr);
  min-height: 600px;
}

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

.company-tab-visual {
  min-height: 600px;
  overflow: hidden;
  background: #dfe7ef;
}

.company-tab-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-tab-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(34px, 5vw, 70px);
  background: #f3f3f3;
}

.company-tab-copy h3 {
  margin: 0 0 22px;
  color: #111313;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.1;
  font-weight: 800;
}

.company-tab-copy p {
  max-width: 620px;
  margin: 0;
  color: #5d666b;
  font-size: 16px;
  line-height: 1.9;
}

.company-read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 32px;
  padding: 0 28px;
  border-radius: 999px;
  color: var(--white);
  background: #1778d6;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.company-read-more:hover {
  background: #0f62b8;
}

@media (max-width: 1280px) {
  .company-tabs,
  .company-tab-panels {
    width: min(1180px, calc(100% - 40px));
  }

  .company-tab-panel {
    grid-template-columns: minmax(420px, 0.95fr) minmax(0, 1.05fr);
    min-height: 430px;
  }

  .company-tab-visual {
    min-height: 430px;
  }
}

.home-page .process-row {
  gap: 14px;
}

.home-page .process-row div {
  position: relative;
  padding: 22px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(17, 19, 19, 0.08);
}

.home-page .process-row span {
  width: 42px;
  height: 42px;
  color: var(--white);
  background: #1778d6;
  font-size: 15px;
}

.home-page .factory-flow {
  margin-top: 28px;
  padding: 24px;
  box-shadow: inset 0 0 0 1px rgba(23, 120, 214, 0.05);
}

.home-page .factory-flow > p {
  color: #1778d6;
}

.home-page .factory-flow-grid img {
  box-shadow: 0 8px 18px rgba(17, 19, 19, 0.1);
}

.home-page .inquiry {
  position: relative;
  overflow: hidden;
  align-items: stretch;
  background:
    linear-gradient(90deg, #ffffff 0%, #ffffff 52%, #eff7ff 52%, #eff7ff 100%);
}

.home-page .inquiry-contact-list div {
  padding: 14px;
  border: 1px solid #dbe7f4;
  border-radius: 8px;
  background: #f2f2f2;
}

.home-page .inquiry-form input,
.home-page .inquiry-form select,
.home-page .inquiry-form textarea {
  border-color: #cad9ea;
  background: var(--white);
}

.poster-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(650px, 100%);
  height: 100%;
  padding: 54px;
  color: var(--white);
}

.poster-copy .section-kicker {
  color: var(--accent-2);
}

.poster-copy h2 {
  font-size: clamp(36px, 5vw, 66px);
}

.poster-copy p:last-child {
  max-width: 580px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.7;
}

.poster-controls {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
}

.poster-prev,
.poster-next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  color: var(--white);
  background: rgba(17, 19, 19, 0.42);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.poster-dots {
  display: flex;
  gap: 8px;
}

.poster-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  cursor: pointer;
}

.poster-dots button.active {
  width: 26px;
  background: var(--white);
}

h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.04;
  font-weight: 700;
}

.intro p:last-child,
.split-section p,
.inquiry p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.section-heading a {
  color: var(--accent);
  font-weight: 800;
}

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

.featured-heading {
  margin-bottom: 30px;
}

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

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.product-card img {
  height: 360px;
  background: var(--soft);
}

.product-copy {
  padding: 24px;
}

.product-copy h3,
.benefit-grid h3,
.process-row h3 {
  margin: 10px 0 12px;
  font-size: 22px;
  line-height: 1.2;
}

.product-copy span,
.benefit-grid p,
.process-row p,
.site-footer p,
.footer-contact {
  color: var(--muted);
  line-height: 1.55;
}

.product-copy .product-model {
  display: inline-flex;
  width: fit-content;
  margin-top: 4px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--accent);
  background: var(--paper);
  font-size: 13px;
  font-weight: 800;
}

.catalog-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  gap: 40px;
  align-items: end;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 86px 40px 60px;
}

.catalog-hero h1 {
  max-width: 900px;
  font-size: clamp(42px, 5vw, 72px);
}

.catalog-panel {
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(17, 19, 19, 0.07);
}

.catalog-panel span,
.catalog-card p {
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.catalog-panel strong {
  font-size: 25px;
  line-height: 1.18;
}

.catalog-panel a,
.catalog-image-link,
.catalog-card a {
  color: var(--accent);
  font-weight: 800;
}

.catalog-image-link {
  position: relative;
  display: block;
  overflow: hidden;
}

.product-card-media {
  position: relative;
  display: block;
  width: 100%;
}

.product-card-image {
  display: block;
  pointer-events: none;
  transition:
    opacity 0.24s ease,
    transform 0.24s ease;
}

.product-card-image-secondary {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.catalog-image-link:hover .product-card-image-primary,
.catalog-image-link:focus-visible .product-card-image-primary {
  opacity: 0;
}

.catalog-image-link:hover .product-card-image-secondary,
.catalog-image-link:focus-visible .product-card-image-secondary {
  opacity: 1;
}

.catalog-image-link:hover .product-card-image,
.catalog-image-link:focus-visible .product-card-image {
  transform: none;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 28px;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 0 40px 92px;
}

.filter-panel {
  position: sticky;
  top: 100px;
  align-self: start;
  display: grid;
  gap: 28px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.filter-panel h2 {
  font-size: 34px;
}

.filter-group {
  display: grid;
  gap: 12px;
}

.filter-group h3 {
  margin: 0 0 4px;
  font-size: 15px;
}

.filter-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-weight: 700;
}

.filter-group input {
  width: 16px;
  height: 16px;
  min-height: 0;
  accent-color: var(--accent);
}

.catalog-results {
  min-width: 0;
}

.catalog-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.catalog-toolbar h2 {
  font-size: clamp(34px, 4vw, 48px);
}

.catalog-toolbar select {
  width: min(250px, 100%);
  background: var(--white);
}

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

.catalog-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.catalog-card img {
  height: 260px;
  background: var(--soft);
}

.catalog-card div {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.catalog-card h3 {
  margin: 0;
  min-height: 56px;
  font-size: 22px;
  line-height: 1.25;
}

.catalog-card span {
  color: var(--muted);
  font-size: 14px;
}

.catalog-card .catalog-model {
  display: inline-flex;
  width: fit-content;
  margin-top: 4px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--accent);
  background: var(--paper);
  font-size: 13px;
  font-weight: 800;
}

.catalog-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto 92px;
  padding: 34px;
  border-radius: 8px;
  color: var(--white);
  background: var(--ink);
}

.catalog-cta .section-kicker {
  color: var(--accent-2);
}

.catalog-cta h2 {
  max-width: 720px;
  font-size: clamp(30px, 4vw, 48px);
}

.catalog-cta .primary-btn {
  color: var(--ink);
  background: var(--white);
}

.shop-page {
  background: var(--white);
}

.shop-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px clamp(10px, 1vw, 16px);
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 24px 28px 30px;
  background: var(--white);
  text-transform: uppercase;
  overflow-x: visible;
  overscroll-behavior-x: auto;
  scrollbar-width: none;
}

.shop-tabs::-webkit-scrollbar {
  display: none;
}

.shop-tabs button {
  position: relative;
  flex: 0 0 auto;
  border: 0;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

.shop-tabs button.active {
  color: var(--ink);
}

.shop-tabs button.active::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: #1778d6;
}


.shop-poster {
  position: relative;
  width: 100%;
  height: 465px;
  margin: 0 0 26px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.shop-poster-track,
.shop-poster-track img,
.shop-poster > img {
  position: absolute;
  inset: 0;
}

.shop-poster-track img,
.shop-poster > img {
  opacity: 0;
  filter: saturate(0.95);
  transition: opacity 620ms ease;
}

.shop-poster-track img.active,
.shop-poster > img {
  opacity: 1;
}

.shop-poster::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(17, 19, 19, 0.42);
}

.shop-poster-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: min(760px, 100%);
  height: 100%;
  margin: 0 auto;
  padding: 42px 24px;
  text-align: center;
}

.shop-poster .section-kicker {
  color: var(--accent-2);
}

.shop-poster h1 {
  font-size: clamp(30px, 3.2vw, 46px);
  margin: 0;
}

.shop-poster a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 44px;
  margin-top: 24px;
  padding: 0 20px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
  font-weight: 800;
}

.shop-poster-dots {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 8px;
  height: auto;
  margin: 0;
  padding: 0 24px;
}

.shop-poster-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
}

.shop-poster-dots button.active {
  width: 26px;
  background: var(--white);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  column-gap: 0;
  row-gap: 18px;
  width: min(1480px, 100%);
  margin: 0 auto;
  padding: 14px 0 40px;
  background: var(--white);
}

.shop-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: min(1480px, 100%);
  margin: 0 auto;
  padding: 0 16px 82px;
  background: var(--white);
}

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

.shop-pagination button {
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
  cursor: pointer;
}

.shop-pagination button.active,
.shop-pagination button:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.shop-card {
  position: relative;
  display: grid;
  justify-items: center;
  background: var(--white);
  text-align: center;
}

.shop-card img {
  width: 100%;
  max-width: 296px;
  height: 296px;
  object-fit: contain;
  margin-bottom: 8px;
  background: var(--white);
}

.shop-card .catalog-image-link,
.shop-card .product-card-media {
  justify-self: center;
  width: min(100%, 296px);
  max-width: 296px;
  height: 296px;
  margin-bottom: 8px;
}

.shop-card .catalog-image-link img {
  margin-bottom: 0;
}

.shop-card h2 {
  margin: 0;
  min-height: 34px;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 700;
}

.shop-card p {
  margin: 4px 0 0;
  color: #9a9fa5;
  font-size: 13px;
  line-height: 1.25;
}

.shop-price {
  display: block;
  margin-top: 5px;
  color: #1778d6;
  font-size: 15px;
  font-weight: 800;
}

.shop-badge {
  position: absolute;
  top: 12px;
  left: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  color: var(--white);
  background: #d9434e;
  box-shadow: 0 10px 22px rgba(217, 67, 78, 0.18);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.blog-hero {
  position: relative;
  display: grid;
  place-items: center;
  height: 360px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.blog-hero img {
  position: absolute;
  inset: 0;
  filter: grayscale(0.2);
}

.blog-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(17, 19, 19, 0.58);
}

.blog-hero h1 {
  position: relative;
  z-index: 1;
  font-size: clamp(56px, 8vw, 92px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 56px;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 56px 40px 92px;
  background: var(--white);
}

.blog-main {
  display: grid;
  gap: 34px;
}

.breadcrumb {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.blog-post {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.blog-post img {
  height: 132px;
  border-radius: 4px;
}

.blog-post h2 {
  margin: 0;
  font-size: 21px;
  line-height: 1.25;
}

.blog-post time {
  display: block;
  margin-top: 8px;
  color: #9a9fa5;
  font-size: 13px;
}

.blog-post p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.blog-post a {
  display: inline-flex;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 800;
}

.blog-sidebar {
  display: grid;
  align-content: start;
  gap: 26px;
}

.blog-detail-page {
  background: var(--white);
}

.article-hero,
.article-layout {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 72px 40px 0;
}

.article-hero {
  display: grid;
  gap: 16px;
}

.article-hero h1 {
  max-width: 980px;
  font-size: clamp(42px, 5vw, 74px);
}

.article-hero time {
  color: var(--muted);
  font-weight: 800;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 56px;
  padding-bottom: 92px;
}

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

.article-content > img {
  height: min(520px, 58vh);
  min-height: 360px;
  border-radius: 8px;
  background: var(--soft);
}

.article-body {
  display: grid;
  gap: 22px;
  margin-top: 34px;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.78;
}

.article-body p {
  margin: 0;
}

.floating-contact-bar {
  position: fixed;
  right: 24px;
  top: 50%;
  z-index: 40;
  display: grid;
  gap: 7px;
  transform: translateY(-50%);
}

.floating-contact-btn {
  position: relative;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  padding: 0;
  border: 0;
  border-radius: 5px;
  color: var(--white);
  background: #1778d6;
  box-shadow: 0 8px 20px rgba(23, 120, 214, 0.24);
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease;
}

.floating-contact-btn svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.floating-contact-btn:hover {
  background: #0f62b8;
  transform: translateX(-2px);
}

.floating-contact-btn[data-tip]::before,
.floating-contact-btn[data-tip]::after {
  position: absolute;
  top: 50%;
  right: calc(100% + 10px);
  opacity: 0;
  pointer-events: none;
  transform: translate(8px, -50%);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.floating-contact-btn[data-tip]::before {
  min-width: 118px;
  padding: 9px 14px;
  border-radius: 4px;
  color: #6c6f6d;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(17, 19, 19, 0.16);
  content: attr(data-tip);
  font-size: 14px;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.floating-contact-btn[data-tip]::after {
  right: calc(100% + 4px);
  border: 6px solid transparent;
  border-left-color: var(--white);
  content: "";
}

.floating-contact-btn[data-tip]:hover::before,
.floating-contact-btn[data-tip]:hover::after {
  opacity: 1;
  transform: translate(0, -50%);
}

.floating-contact-wechat {
  overflow: visible;
}

.floating-wechat-panel {
  position: absolute;
  top: 50%;
  right: calc(100% + 16px);
  width: 174px;
  padding: 9px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(17, 19, 19, 0.2);
  opacity: 0;
  pointer-events: none;
  transform: translate(10px, -50%) scale(0.98);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.floating-wechat-panel::after {
  position: absolute;
  top: 50%;
  right: -12px;
  border: 6px solid transparent;
  border-left-color: var(--white);
  content: "";
  transform: translateY(-50%);
}

.floating-wechat-panel img {
  width: 156px;
  height: 156px;
  border-radius: 5px;
  object-fit: contain;
}

.floating-contact-wechat:hover .floating-wechat-panel,
.floating-contact-wechat:focus-visible .floating-wechat-panel,
.floating-contact-wechat.is-open .floating-wechat-panel {
  opacity: 1;
  transform: translate(0, -50%) scale(1);
}

.related-articles {
  display: grid;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.related-articles h2 {
  font-size: 24px;
}

.related-article-link {
  display: grid;
  gap: 6px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.related-article-link span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.related-article-link strong {
  line-height: 1.35;
}

.blog-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
}

.blog-search input {
  min-height: 44px;
  border-radius: 0;
  background: #eef0f2;
}

.blog-search button {
  border: 0;
  color: var(--white);
  background: #78818a;
  cursor: pointer;
  font-size: 22px;
  font-weight: 800;
}

.social-row {
  display: flex;
  gap: 9px;
  padding: 26px 0;
  border-top: 1px solid #cfd4d8;
  border-bottom: 1px solid #cfd4d8;
}

.social-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: var(--white);
  background: #f2f4f6;
  box-shadow: 0 0 0 1px rgba(17, 24, 39, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.social-row a:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.12);
}

.social-row img {
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: contain;
}

.hot-product {
  display: grid;
  justify-items: center;
  text-align: center;
}

.hot-product h2 {
  justify-self: start;
  margin: 0 0 18px;
  font-size: 24px;
}

.hot-product img {
  width: 220px;
  height: 260px;
  object-fit: contain;
}

.hot-product h3 {
  margin: 16px 0 6px;
  font-size: 17px;
}

.hot-product p {
  margin: 0;
  color: #9a9fa5;
}

.hot-product strong {
  margin-top: 8px;
  color: #1778d6;
}

.hot-product a {
  margin-top: 14px;
  color: var(--accent);
  font-weight: 800;
}

.about-source {
  color: #111918;
  background: #fff;
}

.about-source-shell {
  width: min(1560px, calc(100% - 32px));
  margin: 0 auto;
  padding-right: 26px;
  padding-left: 26px;
}

.about-source h2,
.about-source h3,
.about-source p {
  margin-top: 0;
}

.about-source h2 {
  margin-bottom: 22px;
  font-size: clamp(36px, 3.2vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.about-source h3 {
  line-height: 1.2;
}

.about-source p {
  color: #38423f;
  font-size: 17px;
  line-height: 1.58;
}

.about-source-eyebrow {
  margin-bottom: 24px;
  color: #0c4939 !important;
  font-size: 14px !important;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.about-source-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 30px;
  color: #fff;
  background: #0b3d2f;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.about-source-button:hover {
  color: #fff;
  background: #12634e;
}

.about-source-intro {
  padding: 78px 0 96px;
}

.about-source-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(620px, 0.92fr);
  gap: clamp(48px, 6vw, 112px);
  align-items: start;
}

.about-source-copy {
  max-width: 820px;
}

.about-source-copy > p:not(.about-source-eyebrow),
.about-source-copy > [data-about-intro-content] > p {
  margin-bottom: 24px;
}

.about-source-checks {
  width: min(310px, 100%);
  margin: 20px 0 24px;
  padding: 0;
  list-style: none;
}

.about-source-checks li {
  position: relative;
  padding: 12px 8px 12px 34px;
  border-bottom: 1px solid #e1e6e3;
  font-size: 16px;
  font-weight: 650;
}

.about-source-checks li::before {
  position: absolute;
  top: 13px;
  left: 0;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border: 1px solid #0b3d2f;
  border-radius: 50%;
  color: #0b3d2f;
  content: "\2713";
  font-size: 12px;
  font-weight: 900;
}

.about-source-collage {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(0, 0.84fr);
  grid-template-rows: 350px 310px;
  gap: 20px;
  align-items: stretch;
}

.about-source-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-source-collage-building {
  border-radius: 0 70px 0 0;
}

.about-source-collage-production {
  height: calc(100% - 70px) !important;
  margin-top: 70px;
  border-radius: 0 70px 0 0;
}

.about-source-collage-warehouse {
  width: 74% !important;
  justify-self: end;
  border-radius: 0 0 60px 0;
}

.about-source-collage-reception {
  border-radius: 70px 70px 0 70px;
}

.about-source-overview {
  padding: 100px 0;
  background: #f1f4f2;
}

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

.about-source-stats article {
  min-height: 220px;
  padding: 28px 24px;
  border-top: 3px solid #0b3d2f;
  background: #fff;
}

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

.about-source-stats strong {
  margin-bottom: 10px;
  color: #0b3d2f;
  font-size: clamp(30px, 2.4vw, 44px);
  line-height: 1;
}

.about-source-stats span {
  min-height: 46px;
  color: #111918;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
}

.about-source-stats p {
  margin: 18px 0 0;
  color: #65706c;
  font-size: 14px;
  line-height: 1.5;
}

.about-source-manufacturing {
  padding: 104px 0;
}

.about-source-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

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

.about-source-manufacturing-grid article {
  overflow: hidden;
  border: 1px solid #dde3df;
  background: #fff;
}

.about-source-manufacturing-grid img {
  width: 100%;
  height: 310px;
  object-fit: cover;
}

.about-source-manufacturing-grid article > div {
  min-height: 270px;
  padding: 28px;
}

.about-source-manufacturing-grid span {
  display: block;
  margin-bottom: 14px;
  color: #0c4939;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.about-source-manufacturing-grid h3 {
  margin: 0 0 16px;
  font-size: 27px;
}

.about-source-manufacturing-grid p {
  margin-bottom: 0;
  font-size: 15px;
}

.about-source-process {
  padding: 96px 0;
  color: #fff;
  background: #0b3d2f;
}

.about-source-process-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 0.82fr);
  gap: clamp(46px, 7vw, 120px);
  align-items: center;
}

.about-source-process-visual {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #072e24;
}

.about-source-process-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 1.54;
  object-fit: cover;
}

.about-source-process .about-source-eyebrow {
  color: #a9ddce !important;
}

.about-source-process-copy > p:not(.about-source-eyebrow) {
  color: rgba(255, 255, 255, 0.74);
}

.about-source-process-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 34px 0 0;
  padding: 0;
  counter-reset: about-process;
  list-style: none;
  background: rgba(255, 255, 255, 0.16);
}

.about-source-process-list li {
  position: relative;
  min-height: 84px;
  padding: 28px 18px 20px 56px;
  background: #0b3d2f;
  counter-increment: about-process;
  font-size: 15px;
  font-weight: 750;
}

.about-source-process-list li::before {
  position: absolute;
  top: 27px;
  left: 18px;
  color: #a9ddce;
  content: "0" counter(about-process);
  font-size: 12px;
  font-weight: 900;
}

.about-source-factory {
  padding: 104px 0;
}

.about-source-factory-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: clamp(46px, 6vw, 96px);
  align-items: center;
}

.about-source-factory-image {
  position: relative;
  padding: 0 0 52px 52px;
}

.about-source-factory-image::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 72%;
  height: 68%;
  content: "";
  background: #dfe9e4;
}

.about-source-factory-image img {
  position: relative;
  display: block;
  width: 100%;
  min-height: 650px;
  object-fit: cover;
}

.about-source-factory-copy p:not(.about-source-eyebrow) {
  margin-bottom: 17px;
  font-size: 16px;
}

.about-source-factory-copy .about-source-button {
  margin-top: 10px;
}

.about-source-services {
  padding: 104px 0 144px;
  background: #f1f4f2;
}

.about-source-heading-centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.about-source-service-grid {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 16px;
}

.about-source-service-grid article {
  grid-column: span 2;
  min-height: 430px;
  padding: 30px 26px;
  border: 1px solid #d9e0dc;
  background: #fff;
}

.about-source-service-grid article img {
  display: block;
  width: 100%;
  height: clamp(170px, 13vw, 220px);
  aspect-ratio: 16 / 10;
  margin-bottom: 20px;
  border-radius: 6px;
  object-fit: cover;
  background: var(--soft);
}

.about-source-service-grid span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #0b3d2f;
  font-size: 12px;
  font-weight: 900;
}

.about-source-service-grid h3 {
  margin: 0 0 16px;
  font-size: 23px;
}

.about-source-service-grid p {
  margin-bottom: 0;
  color: #59635f;
  font-size: 15px;
  line-height: 1.65;
}

.about-hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.about-hero img {
  position: absolute;
  inset: 0;
  filter: saturate(0.9);
}

.about-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(17, 19, 19, 0.58);
}

.about-hero div {
  position: relative;
  z-index: 1;
  width: min(1220px, 100%);
  padding: 72px 40px;
  text-align: center;
}

.about-hero .section-kicker {
  color: var(--accent-2);
}

.about-hero h1 {
  max-width: none;
  margin: 0;
  font-size: clamp(44px, 6vw, 78px);
}

.about-hero p:last-child {
  max-width: 1120px;
  margin: 26px auto 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.58;
  text-align: left;
}

.about-stats,
.about-video-section,
.capability-section,
.process-capability,
.faq-section {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 82px 40px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding-top: 56px;
  padding-bottom: 56px;
}

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

.about-stats strong {
  display: block;
  color: var(--accent);
  font-size: 34px;
  line-height: 1;
}

.about-stats span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.5;
}

.about-video-section {
  padding-top: 0;
  padding-bottom: 30px;
}

.about-video-section video {
  display: block;
  width: min(860px, 100%);
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  background: var(--ink);
  object-fit: cover;
}

.about-video-section + .capability-section {
  padding-top: 38px;
}

.capability-section {
  padding-bottom: 32px;
}

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

.capability-grid article,
.process-capability-grid article {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.capability-grid h3,
.process-capability-grid h3 {
  margin: 0 0 14px;
  font-size: 24px;
}

.capability-grid p,
.process-capability-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.process-capability {
  padding-top: 48px;
  padding-bottom: 48px;
  border-top: 1px solid var(--line);
}

.process-capability > div:first-child {
  max-width: 760px;
  margin-bottom: 32px;
}

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

.process-capability-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--accent-2);
  font-size: 13px;
  font-weight: 900;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(480px, 1.25fr);
  gap: 44px;
  border-top: 1px solid var(--line);
}

.faq-answer-section {
  background: #1f6299;
  color: #ffffff;
}

.faq-answer-shell {
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(52px, 6vw, 84px) 0;
}

.faq-answer-heading {
  display: grid;
  justify-items: center;
  gap: 18px;
  margin-bottom: 48px;
  text-align: center;
}

.faq-answer-heading h2 {
  max-width: 980px;
  margin: 0;
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: clamp(36px, 4.4vw, 58px);
  line-height: 1.04;
  font-weight: 800;
}

.faq-answer-heading p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  font-weight: 800;
}

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

.faq-answer-list details {
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
}

.faq-answer-list summary {
  cursor: pointer;
  padding: 18px 24px 8px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.35;
}

.faq-answer-list p {
  margin: 4px 20px 20px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.98);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  line-height: 1.65;
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.75fr);
  gap: 32px;
  align-items: start;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 56px 40px 72px;
}

.detail-gallery {
  display: grid;
  grid-template-columns: 96px minmax(0, 720px);
  gap: 14px;
  align-items: center;
  max-width: 840px;
}

.detail-main-image {
  grid-column: 2;
  grid-row: 1;
  overflow: hidden;
  aspect-ratio: 1;
  height: auto;
  min-height: 0;
  border-radius: 8px;
  background: var(--white);
  box-shadow: none;
  cursor: zoom-in;
}

.detail-main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
  transition: transform 0.18s ease;
  will-change: transform;
}

.detail-thumbs-wrap {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  position: relative;
  display: grid;
  grid-template-rows: 26px minmax(0, 620px) 26px;
  justify-items: center;
  width: 96px;
}

.detail-thumbs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
  width: 86px;
  max-height: 620px;
  overflow: auto;
  padding: 2px;
  scrollbar-width: none;
}

.detail-thumbs::-webkit-scrollbar {
  display: none;
}

.detail-thumbs-arrow {
  display: grid;
  place-items: center;
  width: 28px;
  height: 24px;
  padding: 0;
  border: 0;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
}

.detail-thumbs-arrow::before {
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  content: "";
}

.detail-thumbs-arrow-prev::before {
  transform: rotate(45deg);
}

.detail-thumbs-arrow-next::before {
  transform: rotate(225deg);
}

.detail-thumbs-arrow:hover,
.detail-thumbs-arrow:focus-visible {
  color: var(--ink);
}

.detail-thumb {
  width: 82px;
  height: 82px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
}

.detail-thumb.active {
  border-color: #111;
  box-shadow: none;
}

.detail-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 7px;
  background: var(--white);
}

.detail-summary {
  position: static;
  display: grid;
  gap: 10px;
  align-self: start;
  min-width: 0;
  margin-top: 11px;
  padding: 0 72px 0 0;
}

.detail-summary > * {
  min-width: 0;
}

.detail-summary h1 {
  font-size: clamp(21px, 1.9vw, 28px);
  line-height: 1.18;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.detail-summary .hero-text {
  margin-top: 4px;
  color: #667078;
  font-size: 16px;
  line-height: 1.5;
}

.detail-description {
  grid-column: 1 / -1;
  display: grid;
  gap: 12px;
  max-width: 1280px;
  margin: 54px auto 0;
  color: #667078;
  font-size: 15px;
  line-height: 1.7;
  text-align: center;
}

.detail-description h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: clamp(20px, 1.45vw, 24px);
  line-height: 1.22;
}

.detail-description p {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.75;
  text-align: left;
}

.product-specs {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid #dbe7f4;
  border-radius: 8px;
  background: var(--white);
}

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

.product-specs h2 {
  margin: 0;
  font-size: 15px;
  line-height: 1.2;
}

.product-specs ul {
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-specs li {
  display: grid;
  grid-template-columns: minmax(120px, max-content) minmax(0, 1fr);
  gap: 5px;
  color: #22272c;
  font-size: 14px;
  line-height: 1.26;
}

.product-specs strong {
  font-weight: 800;
}

.product-specs span {
  color: #4f5962;
}

.sku-selector {
  display: grid;
  gap: 9px;
  padding: 12px;
  border: 1px solid #dbe7f4;
  border-radius: 8px;
  background: var(--white);
}

.selector-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
}

.selector-heading h2 {
  font-size: 18px;
}

.selector-heading .section-kicker {
  margin-bottom: 5px;
}

.selector-heading > span,
.selector-meta span {
  min-width: 0;
  color: #1778d6;
  font-size: 12px;
  font-weight: 900;
  overflow-wrap: anywhere;
  text-align: right;
}

.selector-meta {
  display: grid;
  gap: 6px;
  justify-items: end;
  min-width: 112px;
}

.selector-meta strong {
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.color-sku-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 6px;
}

.color-sku {
  display: grid;
  gap: 5px;
  min-width: 0;
  padding: 5px;
  border: 1px solid #dbe7f4;
  border-radius: 8px;
  color: var(--muted);
  background: #f2f2f2;
  cursor: pointer;
  justify-items: center;
  text-align: center;
}

.color-sku img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  height: 60px;
  object-fit: contain;
  border-radius: 6px;
  background: #e9e9e9;
}

.color-sku span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 18px;
  font-size: 9px;
  font-weight: 800;
  line-height: 1.25;
}

.color-sku.active {
  border-color: #1778d6;
  color: var(--ink);
  background: #f7f7f7;
  box-shadow: 0 0 0 2px rgba(23, 120, 214, 0.12);
}

.model-selector {
  display: grid;
  gap: 6px;
  padding-top: 2px;
}

.selector-heading.compact {
  align-items: center;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.selector-heading.compact h2 {
  font-size: 16px;
}

.model-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.model-list button {
  min-height: 28px;
  padding: 0 9px;
  border: 1px solid #dbe7f4;
  border-radius: 999px;
  color: var(--muted);
  background: #f2f2f2;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
}

.model-list button.active {
  border-color: #1778d6;
  color: var(--white);
  background: #1778d6;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.detail-actions .primary-btn,
.detail-actions .cart-btn,
.detail-actions .secondary-btn {
  min-height: 38px;
  padding: 0 16px;
  font-size: 14px;
}

.detail-actions .primary-btn {
  background: #1778d6;
}

.detail-actions .cart-btn {
  border-color: #1778d6;
  color: #1778d6;
}

.detail-actions .secondary-btn {
  border-color: #d5dde6;
}

.cart-message {
  min-height: 22px;
  margin: -8px 0 0;
  color: #1778d6;
  font-size: 14px;
  font-weight: 800;
}

.related-products {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 40px 40px 82px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 48px;
  padding: 92px 40px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.benefit-grid div,
.process-row div {
  min-height: 180px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.process-section {
  padding: 92px 40px 44px;
}

.process-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.process-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: var(--white);
  background: var(--accent);
  letter-spacing: 0;
}

.factory-flow {
  margin-top: 26px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  text-align: center;
}

.factory-flow > p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.factory-flow > h3 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  margin: 0 0 28px;
  padding: 0 34px;
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(17, 19, 19, 0.16);
  font-size: clamp(24px, 3vw, 34px);
  text-transform: uppercase;
}

.factory-flow-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 30px 44px;
}

.factory-flow-grid article {
  position: relative;
  display: grid;
  gap: 12px;
  align-content: start;
}

.factory-flow-grid article:not(:nth-child(5)):not(:last-child)::after {
  position: absolute;
  top: 42px;
  right: -34px;
  width: 24px;
  height: 24px;
  content: "";
  background: var(--flow-arrow);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.factory-flow-grid article:nth-child(5)::after {
  position: absolute;
  right: 50%;
  bottom: -30px;
  width: 24px;
  height: 24px;
  content: "";
  background: var(--flow-arrow);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transform: translateX(50%);
}

.factory-flow-grid img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border-radius: 4px;
  background: var(--soft);
  object-fit: cover;
}

.factory-flow-grid strong {
  color: var(--ink);
  font-size: clamp(17px, 2vw, 24px);
  line-height: 1.1;
  text-transform: uppercase;
}

.inquiry {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  gap: 44px;
  padding: 44px 40px 92px;
}

.inquiry-contact-list {
  display: grid;
  gap: 22px;
  margin-top: 28px;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.45;
}

.inquiry-contact-list div {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.contact-icon {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  color: var(--accent);
}

.contact-icon-location::before {
  position: absolute;
  inset: 2px 4px 5px;
  border: 3px solid currentColor;
  border-radius: 50% 50% 50% 0;
  content: "";
  transform: rotate(-45deg);
}

.contact-icon-location::after {
  position: absolute;
  top: 7px;
  left: 8px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.contact-icon-phone::before {
  position: absolute;
  inset: 3px;
  border: 3px solid currentColor;
  border-top-color: transparent;
  border-right-color: transparent;
  border-radius: 50%;
  content: "";
  transform: rotate(-38deg);
}

.contact-icon-clock {
  border: 2px solid currentColor;
  border-radius: 50%;
}

.contact-icon-clock::before,
.contact-icon-clock::after {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 2px;
  background: currentColor;
  content: "";
  transform-origin: top center;
}

.contact-icon-clock::before {
  height: 6px;
  transform: rotate(180deg);
}

.contact-icon-clock::after {
  height: 5px;
  transform: rotate(125deg);
}

.inquiry-contact-list strong {
  font-weight: 800;
}

.inquiry-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(17, 19, 19, 0.07);
}

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

.form-row-priority {
  margin-bottom: 2px;
}

.form-optional-fields {
  display: grid;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.form-optional-fields summary {
  cursor: pointer;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

.form-optional-fields[open] summary {
  margin-bottom: 12px;
}

.form-reassurance {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--paper);
}

input,
select {
  min-height: 48px;
  padding: 0 14px;
}

textarea {
  resize: vertical;
  padding: 14px;
}

.inquiry-form button {
  width: 100%;
  min-height: 52px;
  border: 0;
  cursor: pointer;
}

.checkout-page {
  background: var(--paper);
}

.product-detail-body,
.product-detail-body main[data-product-detail],
.checkout-body,
.checkout-body .checkout-page {
  background: var(--white);
}

.checkout-hero,
.checkout-layout,
.checkout-form-section {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 72px 40px 0;
}

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

.checkout-hero h1 {
  max-width: 860px;
  font-size: clamp(40px, 5vw, 72px);
}

.checkout-hero p:last-child,
.checkout-form-section p {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
}

.cart-panel,
.checkout-summary,
.payment-next-step {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.cart-panel,
.checkout-summary {
  padding: 24px;
}

.checkout-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.checkout-section-head h2,
.checkout-summary h2,
.checkout-form-section h2 {
  font-size: clamp(28px, 3vw, 42px);
}

.text-button {
  min-height: auto;
  padding: 0;
  border: 0;
  color: var(--accent);
  background: transparent;
  cursor: pointer;
  font-weight: 800;
}

.cart-items {
  display: grid;
  gap: 12px;
}

.cart-item {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) 132px 110px auto;
  gap: 16px;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.cart-item img {
  aspect-ratio: 1;
  height: auto;
  border-radius: 8px;
  background: var(--soft);
}

.cart-item h3 {
  margin: 0;
  font-size: 18px;
}

.cart-item p,
.cart-item span {
  display: block;
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.quantity-control {
  display: grid;
  grid-template-columns: 34px minmax(48px, 1fr) 34px;
  gap: 6px;
  align-items: center;
}

.quantity-control button {
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--accent);
  background: var(--white);
  cursor: pointer;
  font-weight: 900;
}

.quantity-control input {
  min-height: 36px;
  padding: 0 6px;
  text-align: center;
}

.checkout-summary {
  position: sticky;
  top: 104px;
  align-self: start;
  display: grid;
  gap: 18px;
}

.checkout-summary dl {
  display: grid;
  gap: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}

.checkout-summary div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.checkout-summary dt {
  color: var(--muted);
  font-weight: 700;
}

.checkout-summary dd {
  margin: 0;
  font-weight: 900;
  text-align: right;
}

.checkout-form-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  gap: 44px;
  padding-bottom: 92px;
}

.checkout-result {
  min-height: 22px;
  margin: 0;
  color: var(--accent);
  font-weight: 900;
}

.payment-next-step {
  display: grid;
  gap: 12px;
  padding: 18px;
  background: #f2f6f0;
}

.payment-next-step[hidden] {
  display: none;
}

.payment-next-step p {
  margin: 0;
  font-size: 15px;
}

.paypal-payment-form {
  display: inline-grid;
  justify-items: center;
  align-content: start;
  gap: 8px;
  width: min(100%, 360px);
}

.paypal-payment-form[hidden] {
  display: none;
}

.paypal-hosted-button {
  width: 100%;
  min-height: 44px;
  padding: 0 32px;
  border: 0;
  border-radius: 8px;
  background: #ffd140;
  color: #000;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 800;
}

.paypal-hosted-button:hover {
  background: #f2c300;
}

.paypal-cards {
  max-width: 180px;
  height: auto;
}

.paypal-payment-form p {
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.paypal-wordmark {
  height: 14px;
  width: auto;
  margin-left: 3px;
  vertical-align: middle;
}

.catalog-hero,
.catalog-layout,
.catalog-cta,
.shop-tabs,
.shop-grid,
.blog-layout,
.article-hero,
.article-layout,
.about-stats,
.about-video-section,
.capability-section,
.process-capability,
.faq-section,
.detail-hero,
.related-products,
.checkout-hero,
.checkout-layout,
.checkout-form-section {
  width: min(1560px, calc(100% - 32px));
}

.catalog-hero,
.catalog-layout,
.shop-grid,
.blog-layout,
.article-hero,
.article-layout,
.about-stats,
.about-video-section,
.capability-section,
.process-capability,
.faq-section,
.detail-hero,
.related-products,
.checkout-hero,
.checkout-layout,
.checkout-form-section {
  padding-right: 26px;
  padding-left: 26px;
}

.shop-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  column-gap: 22px;
  row-gap: 42px;
}

.detail-hero {
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.75fr);
}

.blog-layout,
.article-layout {
  grid-template-columns: minmax(0, 1fr) 360px;
}

.empty-cart {
  display: grid;
  gap: 12px;
  padding: 28px 0 8px;
  border-top: 1px solid var(--line);
}

.empty-cart h3,
.empty-cart p {
  margin: 0;
}

.empty-cart p {
  color: var(--muted);
}

.site-footer-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(300px, 420px) minmax(240px, 1fr);
  grid-template-areas:
    "brand social contact"
    "brand links contact"
    "copyright copyright copyright";
  column-gap: clamp(36px, 5vw, 80px);
  row-gap: 12px;
  align-items: start;
  padding: 34px 0 18px;
}

.site-footer-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 1px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.site-footer:not(:has(.site-footer-inner)) {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(300px, 420px) minmax(240px, 1fr);
  grid-template-areas:
    "brand social contact"
    "brand links contact"
    "copyright copyright copyright";
  column-gap: clamp(36px, 5vw, 80px);
  row-gap: 12px;
  align-items: start;
  width: 100%;
  margin: 0;
  background: #080909;
  padding: 34px max(16px, calc((100% - 1560px) / 2)) 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer:not(:has(.site-footer-inner)) > div:first-child {
  grid-area: brand;
}

.site-footer-inner > div:first-child {
  grid-area: brand;
  max-width: 520px;
}

.site-footer .brand {
  color: var(--white);
}

.site-footer p {
  color: rgba(255, 255, 255, 0.68);
}

.site-footer .footer-address {
  margin-top: 4px;
  max-width: 460px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.35;
}

.site-footer a {
  transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.footer-links {
  grid-area: links;
  justify-self: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
}

.footer-social {
  grid-area: social;
  justify-self: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font-size: 12px;
  font-weight: 800;
}

.footer-social a:hover {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
}

.footer-social a.social-icon {
  width: 38px;
  min-height: 38px;
  padding: 0;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.footer-social a.social-icon img {
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: contain;
}

.footer-contact {
  grid-area: contact;
  justify-self: end;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  text-align: right;
  min-width: 0;
  max-width: 100%;
  padding-top: 6px;
}

.site-footer .footer-contact {
  color: rgba(255, 255, 255, 0.72);
}

.footer-copyright {
  position: relative;
  grid-area: copyright;
  margin: 8px 0 0;
  padding-top: 14px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}

.footer-copyright::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 1px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

@media (max-width: 1180px) {
  .shop-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 18px;
    row-gap: 18px;
  }

  .shop-poster {
    width: 100%;
  }

  .site-footer-inner {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.7fr);
    grid-template-areas:
      "brand contact"
      "social contact"
      "links links"
      "copyright copyright";
    column-gap: 28px;
  }

  .site-footer:not(:has(.site-footer-inner)) {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.7fr);
    grid-template-areas:
      "brand contact"
      "social contact"
      "links links"
      "copyright copyright";
    column-gap: 28px;
  }

  .footer-links,
  .footer-social {
    justify-content: flex-start;
  }
}

@media (max-width: 1760px) {
  .hero {
    grid-template-columns: minmax(340px, 480px) minmax(600px, 1fr);
  }
}

@media (max-width: 1040px) {
  .site-header {
    min-height: auto;
    padding: 18px 24px;
  }

  .site-header-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 20px;
    min-height: auto;
  }

  .site-header:not(:has(.site-header-inner)) {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 20px;
    width: auto;
    padding-right: 24px;
    padding-left: 24px;
  }

  .home-body .site-header {
    position: sticky;
    min-height: auto;
    background: rgba(255, 255, 255, 0.86);
  }

  .brand {
    order: 1;
    font-size: 24px;
  }

  .nav-toggle {
    order: 3;
    display: inline-flex;
    margin-left: auto;
  }

  .header-search {
    order: 2;
    flex: 1 1 220px;
    width: auto;
    max-width: 320px;
  }

  .nav-links {
    order: 5;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 16px;
    padding: 18px 0 4px;
    border-top: 1px solid var(--line);
    overflow: visible;
  }

  .site-header[data-nav-open="true"] .nav-links {
    display: flex;
  }

  .header-actions {
    order: 4;
    width: 100%;
    justify-content: flex-end;
  }

  .hero,
  .detail-hero,
  .article-layout,
  .checkout-layout,
  .checkout-form-section,
  .blog-layout,
  .faq-section,
  .split-section,
  .inquiry,
  .catalog-hero,
  .catalog-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 46px 24px 20px;
  }

  .home-page .hero,
  .home-page .split-section,
  .home-page .inquiry {
    grid-template-columns: 1fr;
  }

  .home-page .hero {
    width: 100%;
    min-height: 660px;
    padding: 112px 24px 74px;
  }

  .home-page .hero-media {
    position: absolute;
    inset: 0;
    height: 100%;
    min-height: 0;
    aspect-ratio: auto;
  }

  .hero-media {
    aspect-ratio: 1150 / 620;
    min-height: 0;
    height: auto;
  }

  .poster-carousel {
    width: calc(100% - 48px);
  }

  .home-page .poster-carousel,
  .home-page .section,
  .home-page .split-section,
  .home-page .process-section,
  .home-page .inquiry {
    width: calc(100% - 32px);
  }

  .product-grid,
  .featured-product-grid,
  .about-stats,
  .capability-grid,
  .process-capability-grid,
  .process-row,
  .factory-flow-grid,
  .catalog-grid,
  .shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .factory-flow-grid article::after {
    display: none;
  }

  .filter-panel {
    position: static;
  }

  .detail-summary {
    position: static;
    margin-top: 0;
  }
}

@media (max-width: 720px) {
  .site-header {
    gap: 16px;
  }

  .brand {
    order: 1;
    font-size: 19px;
  }

  .nav-toggle {
    order: 2;
  }

  .header-search {
    order: 3;
    flex-basis: 100%;
    max-width: none;
    width: 100%;
  }

  .header-actions {
    order: 4;
    width: 100%;
    justify-content: space-between;
  }

  .nav-links {
    order: 5;
  }

  .home-category-section {
    width: calc(100% - 24px);
    margin-top: 20px;
  }

  .home-category-heading {
    display: grid;
    gap: 6px;
    margin-bottom: 12px;
  }

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

  .home-category-card {
    min-height: 156px;
  }

  .quote-btn {
    min-height: 40px;
    padding: 0 14px;
  }

  .floating-contact-bar {
    right: 16px;
  }

  .floating-contact-btn {
    width: 50px;
    height: 50px;
  }

  .floating-wechat-panel {
    right: calc(100% + 12px);
    width: 154px;
    padding: 7px;
  }

  .floating-wechat-panel img {
    width: 140px;
    height: 140px;
  }

  .hero {
    min-height: auto;
  }

  .home-page .hero {
    margin-top: 0;
    min-height: 620px;
    padding: 96px 18px 70px;
  }

  .home-page .hero h1 {
    max-width: 92%;
    font-size: 34px;
  }

  .home-page .hero-text {
    margin-top: 16px;
    font-size: 15px;
  }

  .home-page .hero-actions {
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
  }

  .hero-category-list {
    gap: 6px;
    margin-top: 14px;
  }

  .hero-category-list li {
    min-height: 26px;
    padding: 5px 8px;
    font-size: 11px;
  }

  .home-page .hero .primary-btn,
  .home-page .hero .secondary-btn {
    min-height: 44px;
    padding: 0 18px;
    font-size: 12px;
  }

  .home-page .hero-media {
    border-width: 0;
  }

  .home-page .hero-media-dots {
    right: auto;
    bottom: 22px;
    left: 50%;
  }

  h1 {
    font-size: 43px;
  }

  .hero-text {
    font-size: 17px;
  }

  .hero-points {
    font-size: 14px;
  }

  .poster-carousel {
    width: calc(100% - 40px);
    height: 560px;
    min-height: 520px;
    margin-top: 28px;
  }

  .home-page .poster-carousel {
    width: calc(100% - 24px);
    height: 330px;
    min-height: 0;
  }

  .home-page .poster-copy {
    padding: 22px;
  }

  .home-page .poster-copy h2 {
    font-size: 25px;
  }

  .poster-copy {
    justify-content: flex-end;
    padding: 28px 22px 92px;
  }

  .poster-copy h2 {
    font-size: 34px;
  }

  .poster-copy p:last-child {
    font-size: 16px;
  }

  .poster-controls {
    right: 18px;
    bottom: 22px;
    left: 18px;
    justify-content: space-between;
  }

  .section,
  .detail-hero,
  .related-products,
  .article-hero,
  .article-layout,
  .checkout-hero,
  .checkout-layout,
  .checkout-form-section,
  .blog-layout,
  .about-stats,
  .about-video-section,
  .capability-section,
  .process-capability,
  .faq-section,
  .split-section,
  .process-section,
  .inquiry,
  .catalog-hero,
  .catalog-layout,
  .site-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .home-page .section,
  .home-page .split-section,
  .home-page .process-section,
  .home-page .company-tabs-section,
  .home-page .inquiry {
    width: calc(100% - 24px);
    margin-top: 16px;
    padding: 24px 14px;
  }

  .home-page .split-section,
  .home-page .inquiry {
    background: var(--white);
  }

  .home-page .split-section {
    color: #2F3337;
    background: linear-gradient(180deg, #4B5560, #1778d6);
  }

  .home-page .inquiry {
    background: var(--white);
  }

  .home-page .section-heading {
    gap: 12px;
    margin-bottom: 18px;
  }

  .company-tabs-heading {
    width: 100%;
    margin-bottom: 18px;
  }

  .company-tabs-heading h2 {
    font-size: 32px;
  }

  .company-tabs,
  .company-tab-panels {
    width: 100%;
  }

  .company-tabs {
    grid-template-columns: 1fr;
    border-bottom: 1px solid #e1e7ec;
  }

  .company-tabs button {
    min-height: 46px;
    border-right: 0;
    border-bottom: 1px solid #e1e7ec;
    font-size: 14px;
  }

  .company-tabs button:last-child {
    border-bottom: 0;
  }

  .company-tab-panel {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .company-tab-visual {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .company-tab-copy {
    padding: 24px 18px 28px;
  }

  .company-tab-copy h3 {
    margin-bottom: 12px;
    font-size: 26px;
  }

  .company-tab-copy p {
    font-size: 14px;
    line-height: 1.75;
  }

  .company-read-more {
    min-height: 40px;
    margin-top: 22px;
    padding: 0 22px;
    font-size: 12px;
  }

  .section-subtitle {
    font-size: 13px;
  }

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

  .site-footer-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "social"
      "links"
      "contact"
      "copyright";
    row-gap: 18px;
  }

  .footer-social,
  .footer-links {
    justify-content: flex-start;
  }

  .footer-contact {
    align-items: flex-start;
    text-align: left;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .product-grid,
  .featured-product-grid,
  .benefit-grid,
  .about-stats,
  .capability-grid,
  .process-capability-grid,
  .process-row,
  .factory-flow-grid,
  .catalog-grid,
  .blog-post,
  .form-row,
  .cart-item,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .checkout-summary {
    position: static;
  }

  .factory-flow {
    margin-top: 18px;
    padding: 14px 10px 18px;
  }

  .factory-flow > p {
    margin-bottom: 8px;
    font-size: 13px;
  }

  .factory-flow > h3 {
    min-height: 38px;
    margin-bottom: 18px;
    padding: 0 20px;
    font-size: 22px;
    line-height: 1.05;
  }

  .factory-flow-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px 14px;
  }

  .factory-flow-grid article {
    gap: 7px;
  }

  .factory-flow-grid article::after,
  .factory-flow-grid article:not(:nth-child(5)):not(:last-child)::after,
  .factory-flow-grid article:nth-child(5)::after {
    display: block;
    width: 14px;
    height: 14px;
  }

  .factory-flow-grid article:not(:nth-child(5)):not(:last-child)::after {
    top: 23px;
    right: -13px;
  }

  .factory-flow-grid article:nth-child(5)::after {
    right: 50%;
    bottom: -17px;
  }

  .factory-flow-grid img {
    border-radius: 3px;
  }

  .factory-flow-grid strong {
    font-size: 13px;
    line-height: 1.05;
  }

  .cart-item {
    align-items: start;
  }

  .cart-item img {
    width: 112px;
  }

  .shop-tabs {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 16px;
    padding: 24px 20px 28px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
  }

  .shop-poster {
    width: 100%;
    height: 430px;
    margin-bottom: 24px;
  }

  .shop-poster::after {
    background: rgba(17, 19, 19, 0.48);
  }

  .shop-poster-copy {
    justify-content: center;
    padding: 24px;
  }

  .shop-poster h1 {
    font-size: 30px;
  }

  .shop-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 10px;
    row-gap: 24px;
    padding: 10px 12px 64px;
  }

  .shop-card img {
    max-width: 94px;
    height: 112px;
    margin-bottom: 6px;
  }

  .shop-card .catalog-image-link,
  .shop-card .product-card-media {
    width: min(100%, 94px);
    max-width: 94px;
    height: 112px;
    margin-bottom: 6px;
  }

  .shop-card h2 {
    min-height: 34px;
    font-size: 11px;
    line-height: 1.25;
  }

  .shop-card p {
    margin-top: 4px;
    font-size: 10px;
    line-height: 1.25;
  }

  .shop-price {
    margin-top: 5px;
    font-size: 11px;
  }

  .shop-badge {
    top: 8px;
    left: 8px;
    width: 32px;
    height: 32px;
    font-size: 8px;
  }

  .product-section .product-grid,
  .product-section .featured-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .product-section .featured-product-grid {
    margin-bottom: 46px;
  }

  .product-section .product-card img {
    height: 150px;
  }

  .home-page .product-card .catalog-image-link,
  .home-page .product-card > img {
    padding: 8px 8px 0;
  }

  .home-page .product-card .catalog-image-link img,
  .home-page .product-card > img {
    height: 126px;
    max-height: 126px;
  }

  .home-page .product-copy {
    min-height: 126px;
  }

  .product-section .product-copy {
    padding: 12px;
  }

  .product-section .product-copy h3 {
    margin: 6px 0 8px;
    font-size: 14px;
    line-height: 1.25;
  }

  .product-section .product-copy p,
  .product-section .product-copy span {
    font-size: 11px;
    line-height: 1.35;
  }

  .product-section .product-copy .product-model {
    padding: 5px 7px;
    font-size: 10px;
  }

  .blog-hero {
    height: 280px;
  }

  .blog-layout {
    gap: 42px;
    padding-top: 38px;
  }

  .blog-post img {
    height: 210px;
  }

  .article-content > img {
    height: 330px;
    min-height: 280px;
  }

  .article-body {
    font-size: 17px;
  }

  .about-hero {
    min-height: 460px;
  }

  .about-hero div {
    padding: 56px 20px;
  }

  .sku-selector {
    padding: 12px;
  }

  .product-specs {
    padding: 12px;
  }

  .product-specs li {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .color-sku-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
  }

  .color-sku {
    padding: 5px;
  }

  .color-sku img {
    height: 60px;
  }

  .color-sku span {
    min-height: 18px;
    font-size: 8px;
  }

  .detail-gallery {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .detail-main-image {
    grid-column: 1;
    grid-row: 1;
  }

  .detail-thumbs-wrap {
    grid-column: 1;
    grid-row: 2;
    grid-template-columns: 26px minmax(0, 1fr) 26px;
    grid-template-rows: 1fr;
    width: 100%;
  }

  .detail-thumbs {
    grid-template-columns: repeat(5, 54px);
    width: 100%;
    max-height: none;
    overflow-x: auto;
    overflow-y: hidden;
  }

  .detail-thumbs-arrow {
    width: 24px;
    height: 54px;
  }

  .detail-thumbs-arrow-prev::before {
    transform: rotate(-45deg);
  }

  .detail-thumbs-arrow-next::before {
    transform: rotate(135deg);
  }

  .detail-thumb {
    width: 54px;
    height: 54px;
  }

  .detail-description {
    grid-column: 1;
    max-width: none;
    margin: 34px auto 0;
    text-align: center;
  }

  .catalog-toolbar,
  .selector-heading,
  .catalog-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .catalog-cta {
    width: calc(100% - 40px);
    padding: 24px;
  }

  .product-card img {
    height: 320px;
  }

  .inquiry-form {
    padding: 20px;
  }

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

}

@media (max-width: 1040px) {
  .detail-summary {
    padding-right: 0;
  }
}

@media (max-width: 390px) {
  .factory-flow {
    padding-right: 6px;
    padding-left: 6px;
  }

  .factory-flow > h3 {
    font-size: 19px;
  }

  .factory-flow-grid {
    column-gap: 10px;
  }

  .factory-flow-grid article:not(:nth-child(5)):not(:last-child)::after {
    right: -11px;
  }

  .factory-flow-grid strong {
    font-size: 11px;
  }
}

@media (max-width: 720px) {
  .home-page .product-section .product-card img {
    height: 150px;
  }

  .home-page .product-section .product-card .catalog-image-link img,
  .home-page .product-section .product-card > img {
    height: 126px;
    max-height: 126px;
  }
}

@media (min-width: 1041px) {
  .catalog-hero,
  .catalog-layout,
  .catalog-cta,
  .shop-tabs,
  .shop-grid,
  .blog-layout,
  .article-hero,
  .article-layout,
  .about-stats,
  .about-video-section,
  .capability-section,
  .process-capability,
  .faq-section,
  .detail-hero,
  .related-products,
  .checkout-hero,
  .checkout-layout,
  .checkout-form-section {
    width: min(1560px, calc(100% - 32px));
  }

  .catalog-hero,
  .catalog-layout,
  .shop-grid,
  .blog-layout,
  .article-hero,
  .article-layout,
  .about-stats,
  .about-video-section,
  .capability-section,
  .process-capability,
  .faq-section,
  .detail-hero,
  .related-products,
  .checkout-hero,
  .checkout-layout,
  .checkout-form-section {
    padding-right: 26px;
    padding-left: 26px;
  }

  .shop-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    column-gap: 0;
    row-gap: 18px;
    padding-right: 0;
    padding-left: 0;
  }

  .detail-hero {
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.75fr);
    gap: 32px;
  }

  .detail-gallery {
    grid-template-columns: 96px minmax(0, 720px);
    max-width: 840px;
  }

  .detail-main-image {
    aspect-ratio: 1;
    height: auto;
  }

  .blog-layout,
  .article-layout {
    grid-template-columns: minmax(0, 1fr) 360px;
  }
}

.custom-cases-page {
  color: #111313;
  background: #f4f6f7;
}

.custom-cases-page h1,
.custom-cases-page h2,
.custom-cases-page h3,
.custom-cases-page p {
  margin-top: 0;
}

.custom-hero,
.custom-challenge-section,
.custom-solutions-section,
.custom-process-section,
.custom-effects-section,
.custom-sustainability-section,
.custom-faq-section,
.custom-cta-section {
  width: min(1560px, calc(100% - 32px));
  margin: 0 auto;
}

.custom-hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(460px, 1fr);
  align-items: stretch;
  gap: 42px;
  padding: 54px 0 64px;
}

.custom-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 620px;
  padding: clamp(30px, 5vw, 72px);
  border: 1px solid rgba(17, 19, 19, 0.08);
  background: #ffffff;
}

.custom-hero h1 {
  max-width: 720px;
  font-size: clamp(42px, 5.2vw, 82px);
  line-height: 0.98;
  font-weight: 800;
}

.custom-hero-copy > p:not(.section-kicker) {
  max-width: 670px;
  margin: 26px 0 0;
  color: #5d676d;
  font-size: 19px;
  line-height: 1.7;
}

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

.custom-hero-media {
  min-height: 620px;
  overflow: hidden;
  background: #e8edf0;
}

.custom-hero-media img {
  object-position: center;
}

.custom-section-heading {
  display: grid;
  grid-template-columns: minmax(280px, 620px) minmax(280px, 620px);
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 34px;
}

.custom-section-heading h2,
.custom-sustainability-section h2,
.custom-cta-section h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.05;
  font-weight: 800;
}

.custom-section-heading > p:not(.section-kicker),
.custom-sustainability-section > p,
.custom-cta-section p {
  align-self: end;
  max-width: 700px;
  margin-bottom: 0;
  color: #5d676d;
  font-size: 17px;
  line-height: 1.75;
}

.custom-challenge-section,
.custom-solutions-section,
.custom-process-section,
.custom-effects-section,
.custom-faq-section {
  padding: 72px 0;
}

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

.custom-challenge-grid article,
.custom-process-grid article {
  min-height: 260px;
  padding: 30px;
  border: 1px solid rgba(17, 19, 19, 0.08);
  background: #ffffff;
}

.custom-challenge-grid span,
.custom-process-grid strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  border-radius: 999px;
  color: #ffffff;
  background: #1778d6;
  font-size: 14px;
  font-weight: 900;
}

.custom-challenge-grid h3,
.custom-process-grid h3,
.custom-solution-grid h3 {
  margin-bottom: 14px;
  font-size: 24px;
  line-height: 1.18;
}

.custom-challenge-grid p,
.custom-process-grid p,
.custom-solution-grid p,
.custom-faq-list p {
  margin-bottom: 0;
  color: #5d676d;
  font-size: 16px;
  line-height: 1.7;
}

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

.custom-solution-grid article {
  overflow: hidden;
  border: 1px solid rgba(17, 19, 19, 0.08);
  background: #ffffff;
}

.custom-solution-grid img {
  aspect-ratio: 1.12;
  height: auto;
}

.custom-solution-grid article > div {
  min-height: 210px;
  padding: 26px;
}

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

.custom-effects-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.custom-effects-list span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(17, 19, 19, 0.1);
  border-radius: 999px;
  color: #263138;
  background: #ffffff;
  font-size: 14px;
  font-weight: 800;
}

.custom-effect-gallery {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1.1fr;
  gap: 18px;
}

.custom-effect-gallery img {
  aspect-ratio: 1.2;
  height: auto;
  background: #e8edf0;
}

.custom-effect-gallery img:nth-child(2) {
  aspect-ratio: 0.92;
}

.custom-sustainability-section {
  display: grid;
  grid-template-columns: minmax(280px, 640px) minmax(280px, 720px);
  justify-content: space-between;
  gap: 42px;
  padding: 58px clamp(24px, 5vw, 72px);
  border-top: 1px solid rgba(17, 19, 19, 0.08);
  border-bottom: 1px solid rgba(17, 19, 19, 0.08);
  background: #e9f2f8;
}

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

.custom-faq-list details {
  padding: 22px 26px;
  border: 1px solid rgba(17, 19, 19, 0.08);
  background: #ffffff;
}

.custom-faq-list summary {
  cursor: pointer;
  color: #111313;
  font-size: 18px;
  font-weight: 800;
}

.custom-faq-list p {
  padding-top: 16px;
}

.custom-cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 56px clamp(24px, 5vw, 72px);
  margin-bottom: 72px;
  color: #ffffff;
  background: #111313;
}

.custom-cta-section p,
.custom-cta-section .section-kicker {
  color: rgba(255, 255, 255, 0.74);
}

.custom-cta-section h2 {
  color: #ffffff;
}

.custom-cta-section .primary-btn {
  flex: 0 0 auto;
  background: #1778d6;
}

@media (max-width: 1100px) {
  .custom-hero,
  .custom-section-heading,
  .custom-sustainability-section {
    grid-template-columns: 1fr;
  }

  .custom-hero-copy,
  .custom-hero-media {
    min-height: auto;
  }

  .custom-hero-media {
    aspect-ratio: 1.4;
  }

  .custom-challenge-grid,
  .custom-solution-grid,
  .custom-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .custom-hero,
  .custom-challenge-section,
  .custom-solutions-section,
  .custom-process-section,
  .custom-effects-section,
  .custom-faq-section {
    padding: 36px 0;
  }

  .custom-hero-copy {
    padding: 28px 22px;
  }

  .custom-hero h1 {
    font-size: 40px;
    line-height: 1.05;
  }

  .custom-hero-copy > p:not(.section-kicker),
  .custom-section-heading > p:not(.section-kicker),
  .custom-sustainability-section > p,
  .custom-cta-section p {
    font-size: 16px;
  }

  .custom-challenge-grid,
  .custom-solution-grid,
  .custom-process-grid,
  .custom-effect-gallery {
    grid-template-columns: 1fr;
  }

  .custom-challenge-grid article,
  .custom-process-grid article {
    min-height: auto;
    padding: 24px;
  }

  .custom-effect-gallery img,
  .custom-effect-gallery img:nth-child(2) {
    aspect-ratio: 1.15;
  }

  .custom-sustainability-section,
  .custom-cta-section {
    padding: 36px 22px;
  }

  .custom-cta-section {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 42px;
  }
}

.ct-layout {
  background: #f5f7f9;
}

.custom-cases-seo {
  padding: 72px 24px 78px;
  color: #ffffff;
  background: #4B5560;
}

.custom-cases-seo-inner {
  width: min(1512px, 100%);
  margin: 0 auto;
}

.custom-cases-seo-kicker {
  margin-bottom: 16px;
  color: #bcdcff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.custom-cases-seo h1 {
  max-width: 1000px;
  margin-bottom: 30px;
  color: #ffffff;
  font-size: clamp(38px, 4vw, 64px);
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.custom-cases-seo-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 44px;
  max-width: 1260px;
}

.custom-cases-seo-copy p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  line-height: 1.75;
}

.custom-cases-seo-services {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.custom-cases-seo-services li {
  padding: 17px 18px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}

.custom-cases-seo-detail {
  max-width: 1120px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.custom-cases-seo-detail h2 {
  max-width: 820px;
  margin-bottom: 18px;
  color: #ffffff;
  font-size: clamp(27px, 2.5vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.custom-cases-seo-detail p {
  max-width: 1080px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  line-height: 1.75;
}

@media (max-width: 900px) {
  .custom-cases-seo {
    padding: 56px 20px 62px;
  }

  .custom-cases-seo-copy {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .custom-cases-seo-services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .custom-cases-seo-detail {
    margin-top: 40px;
    padding-top: 34px;
  }
}

@media (max-width: 560px) {
  .custom-cases-seo {
    padding: 46px 18px 50px;
  }

  .custom-cases-seo h1 {
    margin-bottom: 24px;
    font-size: 36px;
  }

  .custom-cases-seo-copy p {
    font-size: 16px;
    line-height: 1.65;
  }

  .custom-cases-seo-services {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }
}

.sb-about-import {
  color: #111313;
  background: #ffffff;
}

.sb-about-import p {
  color: #5d676d;
  font-size: 16px;
  line-height: 1.75;
}

.sb-about-import img {
  display: block;
  width: 100%;
  object-fit: cover;
  background: #f3f5f2;
}

.sb-about-hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(520px, 1.1fr);
  min-height: 680px;
  background: #f5f7f4;
}

.sb-about-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(52px, 6vw, 110px) clamp(28px, 6vw, 96px);
}

.sb-about-hero h1 {
  max-width: 680px;
  margin: 0 0 22px;
  font-size: clamp(34px, 4.2vw, 62px);
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: 0;
}

.sb-about-hero h1 span {
  display: block;
}

.sb-about-hero-copy > p:not(.section-kicker) {
  max-width: 680px;
  margin-bottom: 30px;
}

.sb-about-hero-media {
  min-height: 680px;
}

.sb-about-hero-media img {
  height: 100%;
}

.sb-about-section,
.sb-about-cta {
  width: 100%;
  margin: 0;
  padding: clamp(34px, 4vw, 52px) 24px;
}

.sb-about-heading {
  display: grid;
  gap: 12px;
  max-width: 980px;
  margin-bottom: 34px;
}

.sb-about-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.sb-about-heading h2,
.sb-about-cta h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.05;
  font-weight: 900;
}

.sb-about-heading > p:not(.section-kicker) {
  margin: 0;
}

.sb-about-section > .sb-about-heading,
.sb-about-section > .sb-about-card-grid,
.sb-about-section > .sb-about-process-cards,
.sb-about-section > .sb-about-diy-tabs,
.sb-about-section > .sb-about-logo-composite {
  width: min(1440px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.sb-about-solutions {
  width: 100%;
  max-width: none;
  padding-right: max(14px, calc((100vw - 1560px) / 2 + 14px));
  padding-left: max(14px, calc((100vw - 1560px) / 2 + 14px));
  background: #f5f7f4;
}

.sb-about-solutions .sb-about-heading {
  max-width: 1120px;
}

.sb-about-solutions .sb-about-heading h2 {
  font-size: clamp(30px, 3.2vw, 48px);
}

.sb-about-solution-carousel {
  position: relative;
  overflow: hidden;
}

.sb-about-solution-viewport {
  overflow: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.sb-about-solution-viewport::-webkit-scrollbar {
  display: none;
}

.sb-about-solution-track {
  display: flex;
  gap: 12px;
  align-items: stretch;
}

.sb-about-solution-track figure {
  flex: 0 0 calc((100% - 24px) / 3);
  margin: 0;
  position: relative;
  overflow: hidden;
  min-width: 0;
  background: #ffffff;
}

.sb-about-solution-track img {
  aspect-ratio: 1.08;
  height: auto;
  object-fit: cover;
  object-position: center;
  background: #eef3ef;
}

.sb-about-solution-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: #8b9294;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 22px rgba(17, 19, 19, 0.12);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}

.sb-about-solution-arrow.prev {
  left: 8px;
}

.sb-about-solution-arrow.next {
  right: 8px;
}

.sb-about-solution-arrow:hover {
  color: #111313;
  background: #ffffff;
}

.sb-about-manufacturing {
  width: min(1440px, calc(100% - 32px));
  margin-right: auto;
  margin-left: auto;
  padding-top: clamp(48px, 5vw, 82px);
  padding-bottom: clamp(48px, 5vw, 82px);
  background: #ffffff;
}

.sb-about-manufacturing .sb-about-heading {
  margin-bottom: 42px;
}

.sb-about-manufacturing .sb-about-heading h2 {
  color: #2b2c32;
  font-family: var(--font-sans);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.08;
  font-weight: 900;
}

.sb-about-manufacturing-nav {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
  max-width: 1280px;
  margin-right: auto;
  margin-bottom: clamp(44px, 6vw, 86px);
  margin-left: auto;
}

.sb-about-manufacturing-nav button {
  min-height: 54px;
  padding: 0 18px;
  border: 0;
  color: #ffffff;
  background: #060817;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}

.sb-about-manufacturing-nav button.is-active {
  background: #2f65c5;
}

.sb-about-manufacturing-panel {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(360px, 1fr);
  gap: clamp(42px, 7vw, 118px);
  align-items: center;
}

.sb-about-manufacturing-panel[hidden] {
  display: none;
}

.sb-about-manufacturing-panel > figure:only-child {
  grid-column: 1 / -1;
  justify-self: center;
}

.sb-about-manufacturing-panel figure {
  display: grid;
  place-items: center;
  margin: 0;
  min-height: 560px;
}

.sb-about-manufacturing-panel img {
  width: min(560px, 100%);
  height: auto;
  max-height: 650px;
  object-fit: contain;
  background: transparent;
}

.sb-about-manufacturing-copy {
  max-width: 610px;
}

.sb-about-manufacturing-copy h3,
.sb-about-manufacturing-method h3 {
  margin: 0 0 16px;
  color: #2b2c32;
  font-size: clamp(24px, 2.1vw, 34px);
  line-height: 1.15;
  font-weight: 900;
}

.sb-about-manufacturing-copy strong {
  display: block;
  margin-bottom: 22px;
  color: #2b2c32;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
  font-weight: 900;
}

.sb-about-manufacturing-copy p,
.sb-about-manufacturing-method p {
  margin: 0 0 34px;
  color: #2b2c32;
  font-size: 17px;
  line-height: 1.55;
}

.custom-cases-page .sb-about-manufacturing {
  width: min(1560px, calc(100% - 32px));
}

.custom-cases-page .sb-about-manufacturing-nav {
  max-width: 100%;
}

.custom-cases-page .sb-about-manufacturing-panel {
  grid-template-columns: minmax(520px, 1.42fr) minmax(360px, 0.78fr);
  gap: clamp(56px, 5vw, 84px);
}

.custom-cases-page .sb-about-manufacturing-panel figure {
  min-height: clamp(620px, 44vw, 700px);
}

.custom-cases-page .sb-about-manufacturing-panel img {
  width: min(780px, 100%);
  max-height: 720px;
}

.custom-cases-page .sb-about-manufacturing-copy {
  max-width: 520px;
}

.sb-about-manufacturing-panel.surface {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.sb-about-manufacturing-method {
  min-height: 250px;
  padding: 28px;
  background: #f5f7f4;
}

.sb-about-two-col {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
}

.sb-about-copy {
  display: grid;
  gap: 14px;
}

.sb-about-copy h3,
.sb-about-checklist h3,
.sb-about-detail-list h3,
.sb-about-card-grid h3,
.sb-about-process-cards h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
}

.sb-about-copy p {
  margin: 0;
}

.sb-about-image-stack {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 16px;
  align-items: stretch;
}

.sb-about-image-stack img {
  height: 100%;
  min-height: 420px;
  border-radius: 8px;
}

.sb-about-image-stack img:first-child {
  object-fit: contain;
  padding: 18px;
  border: 1px solid #e4e7e3;
}

.sb-about-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: min(1440px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.sb-about-card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sb-about-card-grid article,
.sb-about-checklist,
.sb-about-detail-list article,
.sb-about-faq-list details {
  padding: 24px;
  border: 1px solid #e4e7e3;
  border-radius: 8px;
  background: #fbfcfa;
}

.sb-about-card-grid article {
  display: grid;
  gap: 12px;
}

.sb-about-card-grid p {
  margin: 0;
}

.sb-about-logo {
  width: 100%;
  max-width: none;
  padding-right: max(24px, calc((100vw - 1500px) / 2 + 24px));
  padding-left: max(24px, calc((100vw - 1500px) / 2 + 24px));
  background: #f5f7f4;
}

.sb-about-logo-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(560px, 0.58fr);
  gap: 24px;
  align-items: start;
}

.sb-about-logo-layout > img,
.sb-about-logo-grid figure {
  border: 1px solid #e2e7e1;
  border-radius: 8px;
  background: #ffffff;
}

.sb-about-logo-layout > img {
  object-fit: contain;
  padding: 16px;
}

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

.sb-about-logo-grid figure {
  margin: 0;
  overflow: hidden;
}

.sb-about-logo-grid img {
  aspect-ratio: 1;
  object-fit: contain;
  padding: 14px;
}

.sb-about-logo-grid figcaption {
  padding: 0 14px 14px;
  color: #111313;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.sb-about-logo-composite {
  padding: 12px;
  border: 1px solid #e2e7e1;
  border-radius: 8px;
  background: #ffffff;
}

.sb-about-logo-composite img {
  width: 100%;
  aspect-ratio: 1024 / 531;
  object-fit: contain;
}

.sb-about-process-cards {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.sb-about-process-cards[data-custom-service-cards] {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: min(1440px, 100%);
}

.sb-about-process-cards[data-custom-service-cards] article {
  flex: 0 1 calc((100% - 98px) / 8);
  min-width: 0;
}

.sb-about-process-cards[data-custom-service-cards] h3 {
  font-size: clamp(12px, 0.86vw, 15px);
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: 0;
}

.sb-about-process-cards article {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 14px;
  border: 1px solid #e4e7e3;
  border-radius: 8px;
  background: #ffffff;
}

.sb-about-process-cards img {
  aspect-ratio: 1.02;
  border-radius: 6px;
}

.sb-about-ideas {
  width: 100%;
  max-width: none;
  padding-right: max(24px, calc((100vw - 1500px) / 2 + 24px));
  padding-left: max(24px, calc((100vw - 1500px) / 2 + 24px));
  background: #f7f8f5;
}

.sb-about-diy-tabs > input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  opacity: 0;
  pointer-events: none;
}

.sb-about-tab-nav {
  display: flex;
  align-items: stretch;
  gap: 0;
  overflow-x: auto;
  border: 1px solid #d8dfd8;
  border-bottom: 0;
  background: #ffffff;
}

.sb-about-tab-nav label,
.sb-about-tab-nav button {
  display: grid;
  place-items: center;
  min-width: 190px;
  min-height: 58px;
  padding: 14px 20px;
  border: 0;
  border-right: 1px solid #d8dfd8;
  background: transparent;
  color: #111313;
  cursor: pointer;
  font: inherit;
  font-size: 15px;
  font-weight: 900;
  text-align: center;
  transition: background 0.18s ease, color 0.18s ease;
}

.sb-about-tab-nav label:last-child,
.sb-about-tab-nav button:last-child {
  border-right: 0;
}

.sb-about-tab-nav label:hover,
.sb-about-tab-nav button:hover {
  background: #eef2ef;
}

.sb-about-tab-panels {
  border: 1px solid #d8dfd8;
  background: #f5f6f4;
}

.sb-about-tab-panel {
  display: none;
  grid-template-columns: minmax(320px, 0.9fr) minmax(360px, 1.1fr);
  gap: 28px;
  align-items: stretch;
  min-height: 560px;
  padding: 28px;
}

.sb-about-tab-panel > div,
.sb-about-tab-panel figure {
  margin: 0;
  padding: 24px;
  background: #ffffff;
}

.sb-about-tab-panel > div {
  display: grid;
  align-content: start;
  gap: 14px;
}

.sb-about-tab-panel h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.12;
}

.sb-about-tab-panel p {
  margin: 0;
}

.sb-about-tab-panel figure {
  display: grid;
  place-items: center;
}

.sb-about-tab-panel img {
  max-height: 680px;
  object-fit: contain;
}

#diy-tab-requests:checked ~ .sb-about-tab-nav label[for="diy-tab-requests"],
#diy-tab-drawing:checked ~ .sb-about-tab-nav label[for="diy-tab-drawing"],
#diy-tab-inspection:checked ~ .sb-about-tab-nav label[for="diy-tab-inspection"],
#diy-tab-production:checked ~ .sb-about-tab-nav label[for="diy-tab-production"],
.sb-about-tab-nav label.is-active,
.sb-about-tab-nav button.is-active {
  color: #ffffff;
  background: #1778d6;
}

#diy-tab-requests:checked ~ .sb-about-tab-panels .panel-requests,
#diy-tab-drawing:checked ~ .sb-about-tab-panels .panel-drawing,
#diy-tab-inspection:checked ~ .sb-about-tab-panels .panel-inspection,
#diy-tab-production:checked ~ .sb-about-tab-panels .panel-production,
.sb-about-tab-panel.is-active {
  display: grid;
}

.sb-about-checklist ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.sb-about-checklist li {
  color: #5d676d;
  font-weight: 800;
}

.sb-about-checklist li::before {
  margin-right: 8px;
  color: #1778d6;
  content: "•";
}

.sb-about-detail-list {
  display: grid;
  gap: 14px;
}

.sb-about-detail-list p {
  margin-bottom: 0;
}

.sb-about-faq {
  max-width: 1080px;
}

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

.sb-about-faq-list summary {
  cursor: pointer;
  color: #111313;
  font-size: 17px;
  font-weight: 900;
}

.sb-about-faq-list p {
  margin: 14px 0 0;
}

.sb-about-faq-bottom {
  display: grid;
  justify-items: center;
  gap: 44px;
  width: 100%;
  margin: 0;
  padding: 74px 48px 86px;
  color: #ffffff;
  background: #155797;
}

.sb-about-faq-bottom-heading {
  display: grid;
  justify-items: center;
  gap: 24px;
  text-align: center;
}

.sb-about-faq-bottom h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.1;
  font-weight: 900;
}

.sb-about-faq-bottom-heading p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 800;
}

.sb-about-faq-bottom-list {
  display: grid;
  gap: 12px;
  width: min(1180px, 100%);
}

.sb-about-faq-bottom-list details {
  padding: 16px 24px 15px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
}

.sb-about-faq-bottom-list summary {
  cursor: pointer;
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
  white-space: nowrap;
}

.sb-about-faq-bottom-list p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
}

@media (max-width: 760px) {
  .sb-about-faq-bottom {
    padding-right: 20px;
    padding-left: 20px;
  }

  .sb-about-faq-bottom-list summary {
    white-space: normal;
  }
}

.sb-about-cta {
  display: grid;
  justify-items: center;
  gap: 16px;
  width: 100%;
  min-height: 260px;
  margin: 0;
  padding: 52px 36px;
  border-radius: 0;
  color: #ffffff;
  background: #111313;
  text-align: center;
}

.sb-about-cta .section-kicker,
.sb-about-cta h2 {
  color: #ffffff;
}

.sb-about-cta .section-kicker {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.sb-about-cta h2 {
  max-width: 1180px;
  margin: 0;
  font-size: clamp(26px, 2.6vw, 40px);
  line-height: 1.08;
}

.sb-about-cta .primary-btn {
  min-height: 48px;
  padding: 0 28px;
  color: #ffffff;
  background: #1778d6;
}

@media (max-width: 1180px) {
  .sb-about-hero,
  .sb-about-two-col,
  .sb-about-logo-layout,
  .sb-about-manufacturing-panel {
    grid-template-columns: 1fr;
  }

  .sb-about-manufacturing-nav,
  .sb-about-manufacturing-panel.surface {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sb-about-manufacturing-panel figure {
    min-height: 420px;
  }

  .sb-about-hero,
  .sb-about-hero-copy,
  .sb-about-hero-media {
    min-height: 0;
  }

  .sb-about-hero-media img {
    aspect-ratio: 16 / 9;
  }

  .sb-about-card-grid,
  .sb-about-card-grid.three,
  .sb-about-process-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sb-about-process-cards[data-custom-service-cards] article {
    flex-basis: calc((100% - 14px) / 2);
  }

  .sb-about-solution-track figure {
    flex-basis: calc((100% - 12px) / 2);
  }
}

@media (max-width: 720px) {
  .sb-about-hero-copy,
  .sb-about-section,
  .sb-about-cta {
    padding-right: 16px;
    padding-left: 16px;
  }

  .sb-about-card-grid,
  .sb-about-card-grid.three,
  .sb-about-logo-grid,
  .sb-about-process-cards,
  .sb-about-tab-panel,
  .sb-about-checklist ul,
  .sb-about-image-stack {
    grid-template-columns: 1fr;
  }

  .sb-about-process-cards[data-custom-service-cards] article {
    flex-basis: 100%;
  }

  .sb-about-tab-nav {
    display: grid;
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .sb-about-tab-nav label {
    min-width: 0;
    border-right: 0;
    border-bottom: 1px solid #d8dfd8;
  }

  .sb-about-tab-panel {
    min-height: 0;
    padding: 14px;
  }

  .sb-about-tab-panel > div,
  .sb-about-tab-panel figure {
    padding: 18px;
  }

  .sb-about-manufacturing {
    width: calc(100% - 24px);
    padding-right: 0;
    padding-left: 0;
  }

  .sb-about-manufacturing-nav,
  .sb-about-manufacturing-panel.surface {
    grid-template-columns: 1fr;
  }

  .sb-about-manufacturing-panel figure {
    min-height: 300px;
  }

  .sb-about-manufacturing-nav {
    margin-bottom: 36px;
  }

  .sb-about-solution-track figure {
    flex-basis: 100%;
  }

  .sb-about-image-stack img {
    min-height: 0;
  }
}

@media (max-width: 1180px) {
  .custom-cases-page .sb-about-manufacturing-panel {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .custom-cases-page .sb-about-manufacturing-panel figure {
    min-height: 420px;
  }

  .custom-cases-page .sb-about-manufacturing-panel img {
    width: min(720px, 100%);
  }
}

@media (max-width: 720px) {
  .custom-cases-page .sb-about-manufacturing-panel figure {
    min-height: 300px;
  }

  .custom-cases-page .sb-about-manufacturing-panel img {
    width: 100%;
    max-height: 520px;
  }

  .custom-cases-page .sb-about-manufacturing-copy {
    max-width: none;
  }
}

.ct-layout h1,
.ct-layout h2,
.ct-layout h3,
.ct-layout p {
  margin-top: 0;
}

.ct-hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  color: #ffffff;
  background: #111313;
}

.ct-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.24) 54%, rgba(0, 0, 0, 0.08)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.34), transparent 42%);
}

.ct-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ct-hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: min(1560px, calc(100% - 32px));
  min-height: 720px;
  margin: 0 auto;
  padding: 72px 26px;
}

.ct-hero-copy p {
  margin-bottom: 18px;
  color: #77b8ff;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ct-hero-copy h1 {
  max-width: 780px;
  margin-bottom: 22px;
  color: #ffffff;
  font-size: clamp(48px, 6vw, 94px);
  line-height: 0.98;
  font-weight: 900;
}

.ct-hero-copy span {
  display: block;
  max-width: 680px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}

.ct-metrics,
.ct-section,
.ct-green,
.ct-contact {
  width: min(1560px, calc(100% - 32px));
  margin: 0 auto;
}

.ct-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  transform: translateY(-46px);
  overflow: hidden;
  border: 1px solid rgba(17, 19, 19, 0.08);
  background: #ffffff;
  box-shadow: 0 28px 70px rgba(17, 19, 19, 0.14);
}

.ct-metrics div {
  min-height: 126px;
  padding: 26px 28px;
  border-right: 1px solid #e5edf3;
}

.ct-metrics div:last-child {
  border-right: 0;
}

.ct-metrics strong {
  display: block;
  margin-bottom: 8px;
  color: #1778d6;
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
}

.ct-metrics span {
  color: #5d676d;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.4;
}

.ct-section {
  padding: 56px 26px;
}

.ct-heading {
  display: grid;
  grid-template-columns: minmax(280px, 720px) minmax(220px, 420px);
  align-items: end;
  justify-content: space-between;
  gap: 34px;
  margin-bottom: 34px;
}

.ct-heading.centered {
  display: block;
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.ct-heading h2,
.ct-green h2,
.ct-contact h2 {
  margin-bottom: 0;
  color: #111313;
  font-size: clamp(34px, 4.4vw, 64px);
  line-height: 1.05;
  font-weight: 900;
}

.ct-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.75fr);
  align-items: stretch;
  background: #ffffff;
}

.ct-intro-grid article:first-child {
  min-height: 560px;
}

.ct-intro-grid article:last-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 76px);
}

.ct-intro-grid h3 {
  margin-bottom: 18px;
  font-size: clamp(30px, 3.4vw, 54px);
  line-height: 1.08;
}

.ct-intro-grid p,
.ct-green p,
.ct-contact p {
  color: #5d676d;
  font-size: 17px;
  line-height: 1.75;
}

.ct-intro-grid a {
  align-self: flex-start;
  margin-top: 18px;
  padding: 14px 24px;
  border-radius: 999px;
  color: #ffffff;
  background: #1778d6;
  font-weight: 900;
}

.ct-worries {
  background: #f5f7f9;
}

.ct-worry-grid,
.ct-product-grid,
.ct-process-grid {
  display: grid;
  gap: 22px;
}

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

.ct-worry-grid article,
.ct-process-grid article {
  min-height: 270px;
  padding: 30px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(17, 19, 19, 0.08);
}

.ct-worry-grid span,
.ct-process-grid strong {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 28px;
  border-radius: 50%;
  color: #ffffff;
  background: #1778d6;
  font-weight: 900;
}

.ct-worry-grid h3,
.ct-product-grid h3,
.ct-process-grid h3 {
  margin-bottom: 12px;
  font-size: 23px;
  line-height: 1.2;
}

.ct-worry-grid p,
.ct-product-grid p,
.ct-process-grid p,
.ct-faq-list p {
  margin-bottom: 0;
  color: #5d676d;
  font-size: 15px;
  line-height: 1.7;
}

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

.ct-product-grid article {
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(17, 19, 19, 0.08);
}

.ct-product-grid img {
  aspect-ratio: 1.08;
  height: auto;
}

.ct-product-grid h3,
.ct-product-grid p {
  padding-right: 24px;
  padding-left: 24px;
}

.ct-product-grid h3 {
  padding-top: 24px;
}

.ct-product-grid p {
  padding-bottom: 28px;
}

.ct-process {
  color: #ffffff;
  background: #101417;
}

.ct-process .ct-heading h2 {
  color: #ffffff;
}

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

.ct-process-grid article {
  background: #1a2025;
  box-shadow: none;
}

.ct-process-grid h3 {
  color: #ffffff;
}

.ct-craft-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 24px;
}

.ct-craft-menu {
  display: grid;
  gap: 12px;
}

.ct-craft-menu span {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 0 20px;
  color: #111313;
  background: #ffffff;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(17, 19, 19, 0.07);
}

.ct-craft-menu span:first-child {
  color: #ffffff;
  background: #1778d6;
}

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

.ct-craft-gallery img,
.ct-effect-grid img {
  aspect-ratio: 1;
  height: auto;
  background: #e8edf0;
}

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

.ct-green {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(420px, 1fr);
  gap: 42px;
  align-items: center;
  margin-top: 48px;
  margin-bottom: 48px;
  padding: clamp(34px, 5vw, 70px);
  background: #e7f4ed;
}

.ct-green img {
  aspect-ratio: 1.55;
  height: auto;
}

.ct-faq-list {
  display: grid;
  max-width: 1000px;
  gap: 14px;
  margin: 0 auto;
}

.ct-faq-list details {
  padding: 24px 28px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(17, 19, 19, 0.06);
}

.ct-faq-list summary {
  cursor: pointer;
  color: #111313;
  font-size: 18px;
  font-weight: 900;
}

.ct-faq-list p {
  padding-top: 14px;
}

.ct-contact {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(420px, 0.9fr);
  gap: 44px;
  align-items: start;
  padding: clamp(34px, 5vw, 70px);
  margin-bottom: 76px;
  color: #ffffff;
  background: #111313;
}

.ct-contact h2,
.ct-contact p {
  color: #ffffff;
}

.ct-contact p {
  color: rgba(255, 255, 255, 0.74);
}

.ct-contact .inquiry-form {
  margin: 0;
  background: #ffffff;
}

@media (max-width: 1100px) {
  .ct-metrics,
  .ct-worry-grid,
  .ct-product-grid,
  .ct-process-grid,
  .ct-craft-gallery,
  .ct-effect-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ct-heading,
  .ct-intro-grid,
  .ct-craft-layout,
  .ct-green,
  .ct-contact {
    grid-template-columns: 1fr;
  }

  .ct-craft-menu {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .ct-hero,
  .ct-hero-copy {
    min-height: 620px;
  }

  .ct-hero-copy {
    padding: 48px 6px;
  }

  .ct-hero-copy h1 {
    font-size: 42px;
  }

  .ct-metrics,
  .ct-worry-grid,
  .ct-product-grid,
  .ct-process-grid,
  .ct-craft-gallery,
  .ct-effect-grid,
  .ct-craft-menu {
    grid-template-columns: 1fr;
  }

  .ct-section {
    padding: 42px 0;
  }

  .ct-intro-grid article:first-child {
    min-height: 360px;
  }

  .ct-intro-grid article:last-child,
  .ct-green,
  .ct-contact {
    padding: 28px 22px;
  }
}

@media (max-width: 1240px) {
  .about-source-intro-grid {
    grid-template-columns: minmax(0, 1fr) minmax(500px, 0.9fr);
    gap: 48px;
  }

  .about-source-collage {
    grid-template-rows: 300px 260px;
  }

  .about-source-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .about-source-service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-source-service-grid article {
    grid-column: auto;
  }
}

@media (max-width: 900px) {
  .about-source-shell {
    width: calc(100% - 32px);
    padding-right: 20px;
    padding-left: 20px;
  }

  .about-source-intro-grid,
  .about-source-process-grid,
  .about-source-factory-grid {
    grid-template-columns: 1fr;
  }

  .about-source-copy {
    max-width: none;
  }

  .about-source-collage {
    grid-template-rows: 330px 290px;
  }

  .about-source-process-copy {
    max-width: 680px;
  }

  .about-source-factory-image img {
    min-height: 520px;
  }

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

@media (max-width: 640px) {
  .site-header {
    padding-right: 16px;
    padding-left: 16px;
  }

  .site-header-inner,
  .site-header:not(:has(.site-header-inner)) {
    padding-right: 0;
    padding-left: 0;
  }

  .header-actions {
    justify-content: flex-start;
  }

  .site-header .quote-btn,
  .cart-link {
    min-width: 0;
    padding-right: 12px;
    padding-left: 12px;
    font-size: 12px;
  }

  .site-footer:not(:has(.site-footer-inner)) {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "brand"
      "social"
      "links"
      "contact"
      "copyright";
    column-gap: 0;
  }

  .site-footer:not(:has(.site-footer-inner)) > *,
  .footer-copyright {
    min-width: 0;
    max-width: 100%;
  }

  .footer-copyright {
    overflow-wrap: anywhere;
  }

  .about-source h2 {
    margin-bottom: 18px;
    font-size: 34px;
  }

  .about-source p {
    font-size: 16px;
  }

  .about-source-eyebrow {
    margin-bottom: 18px;
    font-size: 12px !important;
  }

  .about-source-intro,
  .about-source-overview,
  .about-source-manufacturing,
  .about-source-process,
  .about-source-factory,
  .about-source-services {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .about-source-intro-grid {
    gap: 42px;
  }

  .about-source-collage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, 190px);
    gap: 10px;
  }

  .about-source-collage-production {
    height: 100% !important;
    margin-top: 0;
    border-radius: 0 34px 0 0;
  }

  .about-source-collage-building {
    border-radius: 0 34px 0 0;
  }

  .about-source-collage-warehouse {
    width: 100% !important;
    border-radius: 0 0 34px 0;
  }

  .about-source-collage-reception {
    border-radius: 34px 34px 0 34px;
  }

  .about-source-stats,
  .about-source-manufacturing-grid,
  .about-source-service-grid {
    grid-template-columns: 1fr;
  }

  .about-source-stats {
    margin-top: 0;
  }

  .about-source-stats article,
  .about-source-manufacturing-grid article > div,
  .about-source-service-grid article {
    min-height: 0;
  }

  .about-source-manufacturing-grid img {
    height: 270px;
  }

  .about-source-process-visual {
    padding: 10px;
  }

  .about-source-process-list {
    grid-template-columns: 1fr;
  }

  .about-source-factory-image {
    padding: 0 0 24px 24px;
  }

  .about-source-factory-image img {
    min-height: 340px;
  }
}
.not-found-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 80% 10%, rgba(213, 165, 87, 0.18), transparent 32rem),
    #f7f5f0;
}

.not-found-header {
  display: grid !important;
  grid-template-columns: auto 1fr auto !important;
  align-items: center;
  gap: 28px;
  width: 100% !important;
  padding-right: max(24px, calc((100% - 1560px) / 2)) !important;
  padding-left: max(24px, calc((100% - 1560px) / 2)) !important;
}

.not-found-header .nav-links {
  display: flex;
  justify-content: center;
  width: auto;
  padding: 0;
  border: 0;
}

.not-found-header .header-actions {
  display: flex;
  width: auto;
}

.not-found-page {
  width: min(900px, calc(100% - 40px));
  min-height: calc(100vh - 92px);
  margin: 0 auto;
  padding: 120px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.not-found-page h1 {
  max-width: 720px;
  margin: 12px 0 20px;
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  line-height: 0.98;
}

.not-found-page > p:not(.section-kicker) {
  max-width: 680px;
  color: #5d5a54;
  font-size: 1.08rem;
  line-height: 1.75;
}

.not-found-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 34px;
}

.not-found-links a {
  color: inherit;
  font-weight: 700;
}

/* Homepage product cards: keep the featured grid balanced and reduce unused card space. */
.home-page .featured-product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: 16px;
  margin-bottom: 40px;
}

.home-page .product-card {
  grid-template-rows: auto auto;
  align-self: start;
  overflow: hidden;
}

.home-page .product-card .catalog-image-link,
.home-page .product-card > img {
  display: grid;
  place-items: center;
  height: clamp(282px, 22vw, 352px);
  padding: 2px;
  background: #fff;
}

.home-page .product-card .product-card-media {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.home-page .product-card .catalog-image-link img,
.home-page .product-card > img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  transform: none;
  object-fit: contain;
}

.home-page .product-card .catalog-image-link img.product-card-image-secondary {
  inset: 0;
  max-width: 100%;
  max-height: 100%;
  transform: none;
}

.home-page .product-card .catalog-image-link:hover .product-card-image-primary,
.home-page .product-card .catalog-image-link:focus-visible .product-card-image-primary {
  transform: none;
}

.home-page .product-card .catalog-image-link:hover img.product-card-image-secondary,
.home-page .product-card .catalog-image-link:focus-visible img.product-card-image-secondary {
  transform: none;
}

.home-page .product-copy {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 92px;
  padding: 12px 14px 14px;
  gap: 6px;
  border-top: 1px solid #eef4fb;
  background: #fff;
}

.home-page .product-copy h3 {
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  line-height: 1.3;
}

.home-page .product-card .shop-price {
  margin-top: 0;
}

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

@media (max-width: 720px) {
  .home-page .featured-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 34px;
  }

  .home-page .product-card .catalog-image-link,
  .home-page .product-card > img {
    height: 190px;
    padding: 4px;
  }

  .home-page .product-card .catalog-image-link img,
  .home-page .product-card > img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    transform: none;
  }

  .home-page .product-copy {
    min-height: 78px;
    padding: 10px 10px 12px;
  }

  .home-page .product-copy h3 {
    min-height: 0;
    font-size: 13px;
  }
}

@media (max-width: 720px) {
  .not-found-header {
    grid-template-columns: auto auto !important;
    gap: 16px;
  }

  .not-found-header .nav-links {
    display: none;
  }

  .not-found-header .header-actions {
    justify-content: flex-end;
  }
}

/* Reference typography: keep every public-facing text element on the same Inter stack. */
:root {
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: var(--font-sans);
}

body,
button,
input,
select,
textarea {
  font-family: var(--font-sans);
  font-weight: 400;
}

.brand {
  font-weight: 900;
  letter-spacing: -0.03em;
}

.nav-links,
.cart-link,
.quote-btn,
.primary-btn,
.secondary-btn,
.outline-btn,
.shop-cta,
.company-read-more,
.submit-btn,
.checkout-submit,
.product-tabs button,
.filter-pill,
.category-tabs button {
  font-weight: 600;
}

.primary-btn,
.secondary-btn,
.quote-btn,
.submit-btn,
.checkout-submit {
  font-weight: 600;
}

h1,
h2,
.hero-copy h1,
.product-hero-copy h1,
.section-heading h2,
.featured-heading h2,
.page-hero h1,
.product-detail h1,
.detail-info h1,
.inquiry h2,
.about-hero h1,
.blog-hero h1,
.custom-hero h1,
.not-found-main h1 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0;
}

h3,
.product-copy h3,
.product-card h3,
.shop-card h2,
.catalog-card h3,
.blog-card h2,
.related-card h3,
.cart-item h3,
.detail-summary h2 {
  font-family: var(--font-sans);
  font-weight: 900;
  letter-spacing: 0;
}

.product-copy h3,
.shop-card h2,
.catalog-card h3 {
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.32;
}

.shop-price,
.price,
.cart-total,
.summary-total,
.product-price {
  font-weight: 600;
}

.eyebrow,
.badge,
.shop-badge,
.language summary::before,
.cart-link span,
.product-meta,
.form-label,
label,
.catalog-panel a,
.footer-links,
.footer-contact {
  font-weight: 500;
}

/* Final pass: match the reference site's stronger navigation and product text weights. */
.nav-links,
.nav-links a,
.category-tabs button,
.product-tabs button,
.filter-pill {
  font-weight: 600 !important;
}

.brand {
  font-weight: 900 !important;
}

.home-page .product-copy h3,
.home-page .product-copy h3 a,
.product-copy h3,
.product-copy h3 a,
.product-card h3,
.product-card h3 a,
.shop-card h2,
.shop-card h2 a,
.catalog-card h3,
.catalog-card h3 a,
.related-card h3,
.related-card h3 a {
  font-weight: 900 !important;
}

.shop-price,
.price,
.cart-total,
.summary-total,
.product-price {
  font-weight: 500 !important;
}
