﻿:root {
  --color-primary: #0088b8;
  --color-accent: #12bcff;
  --color-teal: #56b8bb;
  --color-text: #333;
  --color-muted: #6f747b;
  --color-border: #e8edf1;
  --color-bg: #f6f8fa;
  --color-white: #fff;
  --shadow: 0 4px 18px rgba(0, 0, 0, .08);
  --shadow-lg: 0 18px 45px rgba(0, 0, 0, .16);
  --font-family: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--color-text);
  background: var(--color-bg);
  font-family: var(--font-family);
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
.layout-wrapper { min-height: 100vh; display: flex; flex-direction: column; }
.main-content { flex: 1; }
.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}
.container.narrow { max-width: 780px; text-align: center; }
.section { padding: 82px 0; }
.band-white { background: #fff; }
.section-kicker {
  color: var(--color-primary);
  font-size: 30px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 8px;
  text-transform: uppercase;
  margin: 22px 0 28px;
}
.section-kicker.compact {
  margin: 0 0 14px;
  font-size: 15px;
  letter-spacing: 3px;
  font-weight: 700;
}
.section-title {
  margin: 0 0 16px;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.16;
  font-weight: 700;
}
.section-subtitle {
  margin: 0 auto 36px;
  max-width: 720px;
  color: var(--color-muted);
  font-size: 17px;
}
.section-header-block { text-align: center; margin-bottom: 38px; }
.section-header.left { text-align: left; margin-bottom: 26px; }
.section-header.left h2 { margin: 0 0 8px; font-size: 36px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 12px 24px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.btn-primary { color: #fff; background: var(--color-primary); }
.btn-primary:hover { background: #05759d; }
.btn-outline { color: var(--color-primary); border-color: var(--color-primary); background: #fff; }
.btn-outline:hover { color: #fff; background: var(--color-primary); }
.btn-sm { min-height: 31px; padding: 7px 20px; font-size: 14px; }

.site-header { position: sticky; top: 0; z-index: 1000; background: #fff; }
.header-top { height: 60px; background: var(--color-primary); color: #fff; }
.header-top-inner {
  height: 60px;
  width: 100%;
  padding: 0 clamp(24px, 4vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.top-left, .top-right, .top-socials { display: flex; align-items: center; gap: 10px; }
.top-link { color: #fff; font-size: 15px; white-space: nowrap; }
.top-divider { color: rgba(255, 255, 255, .5); }
.company-name {
  flex: 1;
  text-align: center;
  color: #fff;
  font-size: 24px;
  line-height: 1;
  font-weight: 800;
  text-shadow: 0 1px 3px rgba(0, 0, 0, .35);
  white-space: nowrap;
}
.top-search {
  height: 34px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 5px;
  background: rgba(255, 255, 255, .09);
}
.search-input {
  width: 180px;
  height: 100%;
  padding: 0 12px;
  border: 0;
  outline: 0;
  color: #fff;
  background: transparent;
}
.search-input::placeholder { color: rgba(255, 255, 255, .7); }
.search-btn {
  width: 38px;
  height: 100%;
  border: 0;
  color: #fff;
  background: transparent;
  cursor: pointer;
}
.icon-search::before { content: "\2315"; font-weight: 700; }
.top-socials a {
  min-width: 30px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
.header-main { height: 112px; background: #fff; box-shadow: var(--shadow); }
.header-main-inner {
  height: 112px;
  width: 100%;
  padding: 0 clamp(24px, 4vw, 64px);
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 54px);
}
.logo { flex-shrink: 0; display: flex; align-items: center; }
.logo-img { width: auto; height: 84px; object-fit: contain; }
.nav-desktop { display: flex; align-items: center; gap: clamp(16px, 2.2vw, 34px); flex: 1; }
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2f3032;
  font-size: 18px;
  font-weight: 500;
  white-space: nowrap;
  padding: 8px 0;
}
.nav-link:hover { color: var(--color-accent); }
.nav-dropdown { position: relative; }
.chevron {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 235px;
  padding: 8px;
  background: #fff;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.nav-dropdown:not(:has(.dropdown-item)) .chevron { display: none; }
.nav-dropdown:not(:has(.dropdown-item)) .dropdown-menu { display: none; }
.nav-dropdown:has(.dropdown-item):hover .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.dropdown-item {
  display: block;
  padding: 9px 12px;
  color: #555;
  font-size: 14px;
}
.dropdown-item:hover { color: var(--color-accent); background: rgba(18, 188, 255, .06); }
.header-actions { margin-left: auto; display: flex; align-items: center; }
.header-mobile-left, .nav-mobile-toggle { display: none; }

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: #fff;
}
.mobile-menu-panel { height: 100%; display: flex; flex-direction: column; }
.mobile-menu-top {
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 20px;
  border-bottom: 1px solid var(--color-border);
}
.mobile-menu-close {
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  font-size: 30px;
  line-height: 1;
}
.mobile-menu-logo-img { height: 30px; width: auto; }
.nav-mobile { display: flex; flex-direction: column; }
.nav-mobile-link {
  display: block;
  padding: 14px 22px;
  border-bottom: 1px solid var(--color-border);
  font-weight: 600;
}
.mobile-nav-footer {
  margin-top: auto;
  padding: 20px;
  display: grid;
  gap: 8px;
  color: var(--color-muted);
  border-top: 1px solid var(--color-border);
}

.hero { position: relative; height: 90dvh; min-height: 620px; overflow: hidden; background: #e9f2f5; }
.hero-media, .hero-media video, .hero-fallback, .hero-fallback img {
  width: 100%;
  height: 100%;
}
.hero-media video, .hero-fallback img { object-fit: cover; }
.hero-fallback { display: none; }
.hero-down {
  position: absolute;
  left: 50%;
  bottom: 42px;
  transform: translateX(-50%);
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(0, 136, 184, .2);
  cursor: pointer;
}
.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 20px;
  display: flex;
  gap: 14px;
  transform: translateX(-50%);
}
.hero-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .35);
}
.hero-dots span:first-child { width: 28px; border-radius: 20px; background: #fff; }
.home-title {
  margin: 0 auto 30px;
  max-width: 760px;
  font-size: 26px;
  line-height: 1.35;
  font-weight: 500;
}
.product-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}
.home-product-card {
  position: relative;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .07);
  overflow: hidden;
}
.home-product-card img {
  width: 100%;
  aspect-ratio: 1 / .86;
  object-fit: cover;
  background: #eef4f7;
}
.home-product-title {
  margin-top: auto;
  min-height: 70px;
  display: flex;
  align-items: center;
  padding: 16px 20px;
  color: #fff;
  background: #43aeca;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.two-col {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 60px;
  align-items: start;
}
.feature-list { display: grid; gap: 18px; }
.feature-list div {
  padding: 22px;
  background: var(--color-bg);
  border-left: 4px solid var(--color-teal);
}
.feature-list b { display: block; margin-bottom: 8px; font-size: 18px; }
.feature-list span { color: var(--color-muted); }
.factory-grid, .exhibit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.factory-grid figure, .exhibit-grid article {
  margin: 0;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .06);
}
.factory-grid img, .exhibit-grid img {
  width: 100%;
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
}
.factory-grid figcaption, .exhibit-grid h3 { margin: 0; padding: 16px; font-size: 18px; }
.exhibit-grid p { margin: 0; padding: 0 16px 18px; color: var(--color-muted); }
.certificate-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}
.certificate-row img {
  width: 100%;
  aspect-ratio: .75 / 1;
  object-fit: cover;
  background: #f3f6f8;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .07);
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.news-card {
  display: block;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .07);
}
.news-card img {
  width: 100%;
  aspect-ratio: 1.6 / 1;
  object-fit: cover;
}
.news-card-body { padding: 20px; }
.news-card time, .news-list-item time, .article-meta {
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 700;
}
.news-card h3 { margin: 8px 0; font-size: 21px; line-height: 1.35; }
.news-card p { color: var(--color-muted); }

.page-banner {
  padding: 82px 0;
  color: #fff;
  background: var(--color-teal);
}
.page-banner h1 {
  margin: 0;
  max-width: 920px;
  font-size: clamp(38px, 4vw, 64px);
  line-height: 1.12;
}
.page-banner p { margin: 14px 0 0; max-width: 780px; font-size: 18px; color: rgba(255, 255, 255, .9); }
.product-layout, .news-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}
.product-sidebar, .news-sidebar { position: sticky; top: 200px; display: grid; gap: 22px; }
.product-sidebar h3, .side-card h3 {
  margin: 0 0 14px;
  font-size: 20px;
}
.category-link, .side-card, .sidebar-contact {
  display: block;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--color-border);
}
.category-link:hover { color: var(--color-primary); border-color: var(--color-primary); }
.sidebar-contact p { margin: 4px 0; color: var(--color-muted); }
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.product-grid.small { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.product-card {
  display: block;
  background: #fff;
  border: 1px solid var(--color-border);
  transition: transform .2s ease, box-shadow .2s ease;
}
.product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.product-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #eef4f7;
}
.product-info { padding: 18px; }
.product-info span { color: var(--color-primary); font-size: 12px; font-weight: 700; text-transform: uppercase; }
.product-info h3 { margin: 7px 0 8px; font-size: 18px; line-height: 1.35; }
.product-info p { margin: 0; color: var(--color-muted); font-size: 14px; }
.pagination-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 30px;
  padding: 16px 0;
}
.pagination-wrapper .pagination-btn,
.pagination-wrapper .page-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  border: 1px solid var(--color-border);
  background-color: var(--color-white);
  color: var(--color-text);
  font-family: Poppins, sans-serif;
  font-size: .85rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  transition: all .25s ease;
}
.pagination-wrapper .pagination-btn:hover,
.pagination-wrapper .page-num:hover,
.pagination-wrapper .page-num-current {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}
.pagination-wrapper .page-num-current {
  font-weight: 600;
}
.pagination-wrapper .pagination-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.pagination-wrapper .pagination-btn[href="javascript:;"] {
  cursor: not-allowed;
  opacity: .4;
  pointer-events: none;
}
.pagination-wrapper span.page-num {
  background: transparent;
  border: none;
  cursor: default;
  pointer-events: none;
}
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 30px;
  padding: 16px 0;
}
.pagination a,
.pagination span {
  display: inline-flex;
  min-width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid var(--color-border);
  background: #fff;
}
.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 54px;
  align-items: start;
}
.product-main-image {
  background: #fff;
  border: 1px solid var(--color-border);
}
.product-main-image img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.product-thumbs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-top: 12px;
}
.product-thumbs button {
  padding: 0;
  border: 1px solid var(--color-border);
  background: #fff;
  cursor: pointer;
}
.product-thumbs img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.product-summary { background: #fff; padding: 36px; border: 1px solid var(--color-border); }
.product-category { color: var(--color-primary); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; }
.product-summary h1 { margin: 12px 0 18px; font-size: clamp(30px, 3vw, 48px); line-height: 1.15; }
.product-summary p { color: var(--color-muted); }
.product-actions { display: flex; gap: 14px; margin: 26px 0; flex-wrap: wrap; }
.product-meta { border-top: 1px solid var(--color-border); padding-top: 18px; color: var(--color-muted); }
.product-meta b { display: block; color: var(--color-text); }
.product-content {
  margin-top: 52px;
  padding: 44px;
  background: #fff;
  border: 1px solid var(--color-border);
}
.product-content h2, .single-content h2, .article-content h2 { margin-top: 32px; font-size: 30px; line-height: 1.2; }
.product-content ul { padding-left: 22px; }
.spec-table { width: 100%; border-collapse: collapse; margin: 22px 0; }
.spec-table th, .spec-table td { padding: 13px 16px; border: 1px solid var(--color-border); text-align: left; }
.spec-table th { width: 220px; background: #f6f8fa; }
.content-image-stack { display: grid; gap: 18px; margin-top: 20px; }
.content-image-stack img, .article-content img { width: 100%; height: auto; }

.news-layout { grid-template-columns: minmax(0, 1fr) 320px; }
.news-list { display: grid; gap: 24px; }
.news-list-item {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 24px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--color-border);
}
.news-list-item img { width: 100%; aspect-ratio: 1.35 / 1; object-fit: cover; }
.news-list-item h2 { margin: 8px 0; line-height: 1.3; }
.news-list-item p { color: var(--color-muted); }
.news-list-item span { color: var(--color-primary); font-weight: 700; }
.side-card { display: grid; gap: 10px; }
.contact-mini-form { display: grid; gap: 10px; }
.contact-mini-form input, .contact-mini-form textarea,
.footer-form input, .footer-form textarea,
.contact-form input, .contact-form textarea {
  width: 100%;
  border: 1px solid #dfe6eb;
  background: #fff;
  padding: 12px 13px;
  outline: 0;
}
.contact-mini-form textarea { min-height: 110px; }
.contact-mini-form button, .contact-form button {
  border: 0;
  padding: 13px 22px;
  color: #fff;
  background: var(--color-teal);
  cursor: pointer;
}
.latest-link { display: block; padding: 10px 0; border-bottom: 1px solid var(--color-border); color: #555; }
.article-main {
  padding: 42px;
  background: #fff;
  border: 1px solid var(--color-border);
}
.article-main h1 { margin: 10px 0 12px; font-size: clamp(32px, 3vw, 48px); line-height: 1.15; }
.article-summary { color: var(--color-muted); font-size: 18px; }
.article-cover { margin: 28px 0; }
.article-cover img { width: 100%; max-height: 520px; object-fit: cover; }
.article-content { color: #444; }
.article-content p { margin: 15px 0; }
.article-content ol, .article-content ul { padding-left: 24px; }

.single-content {
  padding: 46px;
  background: #fff;
  border: 1px solid var(--color-border);
}
.single-content img { width: 100%; height: auto; margin: 22px 0; }
.single-content .image-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.single-content .service-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.single-content .service-steps figure {
  margin: 0;
  background: var(--color-bg);
}
.single-content .service-steps img { margin: 0; aspect-ratio: 1.5 / 1; object-fit: cover; }
.single-content .service-steps figcaption { padding: 18px; font-weight: 700; }
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 34px;
}
.contact-info-panel, .contact-form-panel {
  padding: 38px;
  background: #fff;
  border: 1px solid var(--color-border);
}
.contact-info-panel h2, .contact-form-panel h2 { margin-top: 0; font-size: 34px; }
.contact-info-panel dl { display: grid; grid-template-columns: 130px 1fr; gap: 12px 18px; }
.contact-info-panel dt { font-weight: 700; }
.contact-info-panel dd { margin: 0; color: var(--color-muted); }
.contact-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.contact-form label { display: grid; gap: 8px; color: #555; }
.contact-form .full { grid-column: 1 / -1; }
.map-wrap { margin-top: 34px; }
.map-wrap iframe { width: 100%; height: 430px; border: 0; }

.footer { background: #18212b; color: #d8e0e5; }
.footer-top { padding: 30px 0; background: #fff; color: #555; }
.footer-top-inner { display: flex; align-items: center; gap: 34px; }
.footer-top-logo-img { width: 132px; height: auto; }
.footer-top-desc { margin: 0; max-width: 820px; }
.footer-main {
  padding: 56px 0;
  display: grid;
  grid-template-columns: 1.2fr .75fr .75fr 1.35fr;
  gap: 34px;
}
.footer-col-title { margin: 0 0 18px; color: #fff; font-size: 18px; }
.footer-contact-list, .footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-contact-list span { color: #fff; margin-right: 8px; }
.footer-social { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.footer-social a {
  padding: 6px 9px;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  font-size: 12px;
}
.footer-links a:hover, .footer-social a:hover { color: var(--color-accent); }
.footer-form { display: grid; gap: 12px; }
.footer-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.footer-field { display: grid; gap: 6px; font-size: 13px; }
.footer-field b { color: var(--color-teal); }
.footer-accordion-btn { display: none; }
.footer-desktop-title { display: block; }
.footer-submit {
  width: 120px;
  border: 0;
  padding: 12px 18px;
  color: #fff;
  background: var(--color-teal);
  cursor: pointer;
}
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .1); }
.footer-bottom-inner {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 13px;
}
.footer-bottom-links { display: flex; gap: 18px; }
.fixed-contact {
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 900;
  transform: translateY(-50%);
}
.fixed-contact-inner { display: grid; }
.fixed-contact-item {
  position: relative;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--color-primary);
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}
.fixed-contact-item span {
  position: absolute;
  right: 78px;
  padding: 9px 13px;
  color: #fff;
  background: #1f2b34;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px);
  transition: opacity .2s ease, transform .2s ease;
}
.fixed-contact-item:hover span { opacity: 1; transform: translateX(0); }
.fixed-contact-item i { font-style: normal; font-size: 28px; }
.scroll-top-btn {
  width: 70px;
  height: 54px;
  border: 0;
  color: #fff;
  background: rgba(0, 136, 184, .88);
  cursor: pointer;
  font-size: 30px;
}
.mobile-contact-bar { display: none; }

.home-products-action { margin-top: 36px; text-align: center; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 34px;
}
.stat-card {
  min-height: 188px;
  padding: 30px 18px 24px;
  text-align: center;
  background: #fff;
  border: 1px solid #d9dee2;
}
.stat-icon, .service-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  background: #e8f9ff;
  border-radius: 10px;
  font-size: 26px;
  line-height: 1;
}
.stat-card strong {
  display: block;
  color: #333;
  font-size: 30px;
  line-height: 1.1;
  font-weight: 500;
}
.stat-card span {
  display: block;
  margin-top: 8px;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.35;
}
.feature-list.source-style {
  max-width: 720px;
  margin: 0 auto;
}
.feature-list.source-style div {
  position: relative;
  padding: 0 0 0 48px;
  background: transparent;
  border-left: 0;
}
.feature-list.source-style div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #e8f9ff;
}
.feature-list.source-style div::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 11px;
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
  transform: rotate(-45deg);
}
.why-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 260px));
  justify-content: center;
  gap: 14px;
  margin: 36px 0 42px;
}
.factory-video-card {
  position: relative;
  max-width: 760px;
  margin: 0 auto 40px;
}
.factory-video-card img {
  width: 100%;
  aspect-ratio: 1.8 / 1;
  object-fit: cover;
}
.play-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 96px;
  height: 96px;
  border: 2px solid rgba(255, 255, 255, .62);
  border-radius: 50%;
  background: rgba(0, 136, 184, .22);
  transform: translate(-50%, -50%);
}
.play-ring::before, .play-ring::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}
.play-ring::before {
  inset: 20px;
  border: 1px solid rgba(255, 255, 255, .45);
}
.play-ring::after {
  left: 41px;
  top: 34px;
  border-left: 18px solid #fff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}
.service-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.service-card-grid article {
  padding: 40px 28px;
  text-align: center;
  background: #fff;
  border: 1px solid #d9dee2;
}
.service-card-grid h3 { margin: 0 0 12px; font-size: 20px; line-height: 1.25; }
.service-card-grid p { margin: 0; color: var(--color-muted); line-height: 1.65; }
.certificate-slider {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}
.certificate-slider img {
  width: 100%;
  aspect-ratio: .72 / 1;
  object-fit: cover;
}
.source-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}
.source-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c8c8c8;
}
.source-dots span:first-child { background: #111; }
.factory-grid.source-factory figure { position: relative; overflow: hidden; }
.factory-grid.source-factory figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  color: #fff;
  background: rgba(0, 136, 184, .86);
}
.exhibit-grid.source-exhibit article {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .06);
}
.exhibit-grid.source-exhibit img {
  height: 260px;
  object-fit: cover;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.testimonial-card {
  padding: 34px;
  background: #fff;
  border: 1px solid #d9dee2;
}
.quote-mark {
  height: 42px;
  color: #b7e6f2;
  font-size: 56px;
  line-height: 1;
  font-family: Georgia, serif;
}
.testimonial-card p {
  color: #333;
  font-size: 16px;
  font-style: italic;
  line-height: 1.85;
}
.testimonial-author {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}
.testimonial-author span {
  grid-row: span 2;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--color-primary);
  border-radius: 50%;
  font-weight: 700;
}
.testimonial-author b { line-height: 1.2; }
.testimonial-author small { color: var(--color-muted); }
.source-news-card { border: 1px solid #d9dee2; box-shadow: 0 4px 16px rgba(0, 0, 0, .06); }
.source-news-card .news-card-body { min-height: 240px; }
.news-tag {
  display: inline-block;
  margin-left: 12px;
  padding: 4px 7px;
  color: var(--color-primary);
  background: #effaff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}
.source-news-card em {
  display: inline-block;
  margin-top: 8px;
  padding: 4px 8px;
  color: var(--color-primary);
  background: #effaff;
  font-style: normal;
  font-weight: 700;
}
.home-products .product-feature-grid {
  gap: 24px;
}
.home-products .home-product-card {
  min-height: 0;
  border: 1px solid var(--color-border);
  box-shadow: none;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.home-products .home-product-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.home-products .home-product-card img {
  aspect-ratio: 1.18 / 1;
}
.home-products .home-product-title {
  min-height: 78px;
  color: var(--color-text);
  background: var(--color-white);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: none;
}
.why-section {
  background-color: var(--color-white);
}
.why-section .stats-grid {
  gap: 32px;
  margin-bottom: 48px;
}
.why-section .stat-card {
  min-height: 0;
  padding: 32px 24px;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  box-shadow: none;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.why-section .stat-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.why-section .stat-icon,
.why-section .service-icon {
  background: transparent;
  border-radius: 0;
  color: var(--color-primary);
}
.why-section .feature-list.source-style {
  max-width: none;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin: 0 0 36px;
}
.why-section .feature-list.source-style div {
  min-height: 176px;
  padding: 28px 24px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.why-section .feature-list.source-style div:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.why-section .feature-list.source-style div::before,
.why-section .feature-list.source-style div::after {
  display: none;
}
.why-section .factory-video-card {
  max-width: none;
  margin-bottom: 36px;
}
.why-section .factory-video-card img {
  aspect-ratio: 2.35 / 1;
}
.why-section .service-card-grid {
  gap: 24px;
}
.why-section .service-card-grid article {
  border: 1px solid var(--color-border);
  box-shadow: none;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.why-section .service-card-grid article:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.cert-section {
  background: var(--color-bg);
}
.cert-section .certificate-slider {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
}
.cert-section .certificate-slider img {
  padding: 12px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  box-shadow: none;
  object-fit: contain;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.cert-section .certificate-slider img:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.factory-section {
  background-color: var(--color-white);
}
.factory-section .factory-grid.source-factory {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.factory-section .factory-grid.source-factory figure {
  border: 1px solid var(--color-border);
  box-shadow: none;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.factory-section .factory-grid.source-factory figure:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.factory-section .factory-grid.source-factory img {
  aspect-ratio: 1.36 / 1;
}
.factory-section .factory-grid.source-factory figcaption {
  position: static;
  color: var(--color-text);
  background: var(--color-white);
  font-weight: 600;
}
.news-events-action {
  margin-top: 36px;
  text-align: center;
}
.oss-page {
  counter-reset: oss-step;
  background: #fff;
}
.oss-banner {
  width: 100%;
  padding: 40px 20px;
  background: #56b8bb;
}
.oss-banner .banner-text-overlay {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.oss-banner h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 5vw, 66px);
  font-weight: 600;
  line-height: 1.15;
}
.oss-banner p {
  margin: 14px auto 0;
  max-width: 780px;
  color: rgba(255,255,255,.92);
  font-size: 18px;
  line-height: 1.7;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
  color: rgba(255,255,255,.8);
  font-size: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,.8); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .separator { color: rgba(255,255,255,.6); margin: 0 4px; }
.breadcrumb-prefix { color: rgba(255,255,255,.8); font-size: .875rem; }
.oss-card { background: #fff; }
.oss-card { counter-increment: oss-step; }
.oss-card-inner {
  display: flex;
  align-items: stretch;
  max-width: 1280px;
  min-height: 520px;
  margin: 0 auto;
}
.oss-card-reverse { flex-direction: row-reverse; }
.oss-card-media {
  flex: 0 0 50%;
  min-height: 520px;
}
.oss-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.oss-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  padding: 60px 72px;
}
.oss-card-num {
  display: block;
  margin-bottom: 12px;
  color: rgba(86,184,187,.2);
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: .05em;
  line-height: 1;
}
.oss-card-num::before { content: counter(oss-step, decimal-leading-zero); }
.oss-card-title {
  margin: 0 0 20px;
  color: #1a1a1a;
  font-size: 2.25rem;
  font-weight: 400;
  letter-spacing: -.01em;
  line-height: 1.2;
}
.oss-card-desc {
  margin: 0 0 16px;
  color: #555;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.85;
}
.oss-card-desc:last-of-type { margin-bottom: 0; }
.oss-card-desc-bold {
  margin-bottom: 6px;
  color: #1a1a1a;
  font-size: 1.0625rem;
  font-weight: 600;
}
.oss-card-body p {
  margin: 0 0 16px;
  color: #555;
  font-size: 1rem;
  line-height: 1.85;
}
.oss-card-body p:last-child { margin-bottom: 0; }
.oss-card:nth-of-type(odd) .oss-card-inner { flex-direction: row-reverse; }

@media (max-width: 1200px) {
  .company-name { display: none; }
  .top-search { display: none; }
  .nav-desktop { gap: 20px; }
  .nav-link { font-size: 16px; }
}

@media (max-width: 1024px) {
  body { padding-bottom: calc(70px + env(safe-area-inset-bottom, 0px)); }
  .header-top { display: none; }
  .header-main { height: 56px; }
  .header-main-inner {
    height: 56px;
    padding: 0 20px;
    gap: 12px;
    justify-content: flex-start;
  }
  .header-mobile-left { display: flex; align-items: center; order: 0; }
  .nav-mobile-toggle {
    width: 34px;
    height: 34px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    border: 0;
    padding: 0;
    background: transparent;
  }
  .nav-mobile-toggle span { width: 18px; height: 2px; background: #333; }
  .logo { order: 1; }
  .logo-img { height: 30px; max-width: 88px; }
  .nav-desktop, .header-actions { display: none; }
  .hero {
    height: 280px;
    min-height: 280px;
  }
  .hero-media video { display: none; }
  .hero-fallback { display: block; }
  .hero-fallback img:not(:first-child) { display: none; }
  .hero-down { display: none; }
  .hero-dots { bottom: 10px; }
  .hero-dots span:not(:first-child) { display: none; }
  .hero-dots span:first-child { width: 18px; height: 5px; }
  .section { padding: 50px 0; }
  .container { width: min(100% - 40px, 720px); }
  .home-title {
    font-size: 22px;
    line-height: 1.55;
    margin-bottom: 34px;
  }
  .section-kicker {
    font-size: 26px;
    letter-spacing: 7px;
  }
  .section-subtitle { font-size: 16px; line-height: 1.65; }
  .product-feature-grid, .product-grid, .news-grid,
  .factory-grid, .exhibit-grid, .certificate-row,
  .two-col, .product-detail-layout, .contact-layout,
  .footer-main, .news-layout, .product-layout {
    grid-template-columns: 1fr;
  }
  .home-product-card { min-height: 0; }
  .home-product-card img { aspect-ratio: 1.12 / 1; }
  .home-product-title {
    min-height: 70px;
    padding: 15px;
    font-size: 17px;
    letter-spacing: 1.3px;
  }
  .product-sidebar, .news-sidebar { position: static; }
  .product-grid.small { grid-template-columns: 1fr; }
  .news-list-item { grid-template-columns: 1fr; }
  .product-summary, .product-content, .article-main,
  .single-content, .contact-info-panel, .contact-form-panel {
    padding: 24px;
  }
  .contact-form, .footer-form-grid, .contact-info-panel dl { grid-template-columns: 1fr; }
  .single-content .image-grid, .single-content .service-steps { grid-template-columns: 1fr; }
  .footer-top-inner { align-items: flex-start; }
  .footer-top-logo-img { width: 96px; }
  .fixed-contact { display: none; }
  .mobile-contact-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1200;
    height: calc(70px + env(safe-area-inset-bottom, 0px));
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding-bottom: env(safe-area-inset-bottom, 0px);
    background: var(--color-primary);
  }
  .mobile-contact-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    border-left: 1px solid rgba(255, 255, 255, .18);
  }
  .footer-bottom-inner { align-items: flex-start; flex-direction: column; padding: 18px 0; }
}

@media (max-width: 640px) {
  .page-banner { padding: 54px 0; }
  .page-banner h1 { font-size: 38px; }
  .product-thumbs { grid-template-columns: repeat(4, 1fr); }
  .map-wrap iframe { height: 340px; }
}

/* Source-parity closeout for the Laundry Pods Care home page. */
.footer, .footer-top, .footer-main, .footer-bottom {
  background: var(--color-primary);
  color: #fff;
}
.footer-top {
  border-bottom: 1px solid rgba(18, 188, 255, .5);
}
.footer-top-desc, .footer-contact-list, .footer-contact-list a,
.footer-links a, .footer-bottom-inner, .footer-bottom-links a {
  color: #fff;
}
.footer-social a {
  background: transparent;
  font-size: 13px;
}
.footer-form input, .footer-form textarea {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, .45);
}
.footer-form input:focus, .footer-form textarea:focus {
  border-color: rgba(255, 255, 255, .9);
}
.footer-submit {
  background: var(--color-accent);
}

@media (max-width: 1024px) {
  .home-products { background: #f6f7f8; }
  .home-products .container.narrow { width: min(100% - 40px, 390px); }
  .home-products .section-subtitle { margin-bottom: 38px; }
  .product-feature-grid { gap: 24px; }
  .home-products-action { margin-top: 34px; }
  .home-products-action .btn { min-width: 184px; }
  .why-section { padding-top: 54px; }
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
  .why-section .feature-list.source-style,
  .why-section .service-card-grid,
  .factory-section .factory-grid.source-factory {
    grid-template-columns: 1fr;
  }
  .cert-section .certificate-slider {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
  }
  .cert-section .certificate-slider img {
    display: block;
  }
  .stat-card {
    min-height: 186px;
    padding: 28px 10px 20px;
  }
  .stat-card strong { font-size: 26px; }
  .stat-card span { font-size: 12px; }
  .feature-list.source-style { gap: 22px; margin-top: 34px; }
  .why-actions { grid-template-columns: 1fr; gap: 14px; }
  .why-actions .btn { width: 100%; min-height: 52px; }
  .factory-video-card { margin-bottom: 40px; }
  .factory-video-card img { aspect-ratio: 1.03 / .86; }
  .service-card-grid { grid-template-columns: 1fr; gap: 32px; }
  .service-card-grid article { padding: 36px 26px; }
  .certificate-slider {
    max-width: 210px;
    margin: 0 auto;
    display: block;
  }
  .certificate-slider img { display: none; }
  .certificate-slider img:first-child { display: block; }
  .cert-section .certificate-slider {
    max-width: none;
    display: grid;
  }
  .cert-section .certificate-slider img {
    display: block;
  }
  .cert-section .section-subtitle { margin-bottom: 32px; }
  .factory-grid.source-factory { gap: 12px; }
  .factory-grid.source-factory figure { box-shadow: none; }
  .factory-grid.source-factory img { aspect-ratio: 1.34 / 1; }
  .factory-grid.source-factory figcaption {
    padding: 14px 16px;
    font-size: 16px;
  }
  .exhibit-grid.source-exhibit { gap: 14px; }
  .exhibit-grid.source-exhibit article {
    min-height: 360px;
    box-shadow: 0 3px 14px rgba(0, 0, 0, .05);
  }
  .exhibit-grid.source-exhibit img {
    height: 280px;
    opacity: .02;
  }
  .exhibit-grid.source-exhibit h3 {
    padding: 18px;
    font-size: 16px;
  }
  .testimonial-grid { grid-template-columns: 1fr; }
  .testimonial-card { padding: 32px; }
  .testimonial-card p { font-size: 16px; line-height: 1.8; }
  .source-news-card img {
    height: 230px;
    aspect-ratio: auto;
    opacity: .02;
  }
  .source-news-card .news-card-body { min-height: 240px; }
  .source-news-card h3 { font-size: 18px; }
  .news-tag { margin-left: 0; margin-top: 8px; }
  .oss-card-inner {
    min-height: unset;
  }
  .oss-card-content {
    padding: 40px 48px;
  }
  .oss-card-title {
    font-size: 1.875rem;
  }
  .footer { margin-top: 0; }
  .footer-top {
    padding: 30px 0 24px;
  }
  .footer-top-inner {
    flex-direction: column;
    gap: 20px;
  }
  .footer-top-logo-img { width: 92px; }
  .footer-top-desc {
    padding-left: 0;
    font-size: 15px;
    line-height: 1.7;
  }
  .footer-main {
    padding: 30px 20px 42px;
    gap: 28px;
  }
  .footer-col-title {
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, .22);
    letter-spacing: 2px;
    text-transform: uppercase;
  }
  .footer-social { gap: 18px; }
  .footer-social a {
    padding: 0;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
  }
  .footer-desktop-title { display: none; }
  .footer-accordion-btn {
    width: 100%;
    min-height: 46px;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .22);
    cursor: pointer;
    font-weight: 700;
    letter-spacing: 2px;
    text-align: left;
    text-transform: uppercase;
  }
  .footer-accordion-btn i {
    width: 9px;
    height: 9px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    transition: transform .2s ease;
  }
  .footer-accordion.is-open .footer-accordion-btn i {
    transform: rotate(225deg);
  }
  .footer-accordion .footer-links {
    display: none;
    padding: 8px 0 10px;
  }
  .footer-accordion.is-open .footer-links {
    display: grid;
  }
  .footer-form-grid { grid-template-columns: 1fr; }
  .footer-field { color: #fff; font-size: 16px; }
  .footer-field b { color: #e53935; }
  .footer-form input, .footer-form textarea { min-height: 38px; }
  .footer-submit { opacity: .7; }
  .footer-bottom-inner {
    align-items: center;
    gap: 14px;
    text-align: center;
  }
  .footer-bottom-links { gap: 24px; flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 640px) {
  .home-products { padding-top: 54px; }
  .home-title {
    max-width: 330px;
    font-size: 22px;
    line-height: 1.55;
  }
  .section-kicker {
    font-size: 27px;
    letter-spacing: 8px;
    line-height: 1.42;
  }
  .section-subtitle {
    max-width: 340px;
    font-size: 16px;
    line-height: 1.65;
  }
  .home-product-card {
    box-shadow: 0 4px 14px rgba(0, 0, 0, .05);
  }
  .home-product-card img {
    aspect-ratio: 1.05 / .76;
  }
  .home-product-title {
    min-height: 70px;
    padding: 14px 16px;
    font-size: 17px;
    line-height: 1.25;
  }
  .source-factory figure:nth-child(3) img {
    opacity: .02;
  }
  .oss-banner {
    padding: 34px 20px;
  }
  .oss-banner h1 {
    font-size: 34px;
  }
  .oss-banner p {
    font-size: 15px;
  }
  .breadcrumb {
    flex-wrap: wrap;
    font-size: .9rem;
  }
  .oss-card-inner,
  .oss-card-reverse {
    flex-direction: column-reverse;
  }
  .oss-card-media {
    flex: none;
    min-height: 240px;
  }
  .oss-card-content {
    padding: 32px 20px 40px;
  }
  .oss-card-num {
    font-size: 2.5rem;
  }
  .oss-card-title {
    margin-bottom: 14px;
    font-size: 1.625rem;
  }
  .oss-card-desc,
  .oss-card-desc-bold {
    font-size: .9375rem;
    line-height: 1.75;
  }
}
/* Contact page source parity overrides. */
:root { --color-secondary: #e9f8fb; }
.icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.site-icon { width: 20px; height: 20px; display: block; fill: currentColor; flex-shrink: 0; }
.top-socials { gap: 6px; padding-left: 6px; border-left: 1px solid rgba(255,255,255,.1); }
.top-socials .social-link,
.footer-social .social-link { align-items: center; background: transparent; border-radius: 4px; color: #fff; display: flex; height: 44px; justify-content: center; min-width: 44px; padding: 0; transition: color .2s ease, background .2s ease; width: 44px; }
.top-socials .social-link:hover { background: rgba(18,188,255,.1); color: rgba(18,188,255,.95); }
.footer-social .social-link:hover { color: rgba(18,188,255,.95); }
.footer-social .social-link .site-icon,
.top-socials .social-link .site-icon { width: 20px; height: 20px; }
.contact-page { background: #fff; }
.contact-banner { background: #56b8bb; padding: 40px 20px; width: 100%; }
.banner-text-overlay { margin: 0 auto; max-width: 1200px; text-align: center; }
.banner-text-overlay h1 { color: #fff; font-size: 2.5rem; font-weight: 350; line-height: 1.2; margin: 0 0 15px; text-align: center; }
.banner-text-overlay p { color: #fff; font-size: 1.125rem; font-weight: 400; line-height: 1.6; margin: 0 auto; max-width: 600px; text-align: center; }
.contact-content { background: #fff; padding: 80px min(10vw, 120px); }
.contact-content-inner { margin: 0 auto; max-width: 1280px; }
.contact-grid { align-items: flex-start; display: flex; gap: 60px; }
.contact-info { flex: 0 0 40%; max-width: 440px; }
.contact-info-title { color: #1a1a1a; font-size: 1.5rem; font-weight: 400; letter-spacing: -.01em; line-height: 1.3; margin: 0 0 16px; }
.contact-info-company { border-bottom: 2px solid #56b8bb; color: #1a1a1a; font-size: 1.1rem; font-weight: 700; letter-spacing: .02em; line-height: 1.45; margin: 0 0 12px; padding-bottom: 12px; }
.contact-info-desc { color: #4a4a4a; font-size: 1rem; font-weight: 400; line-height: 1.85; margin: 0 0 32px; }
.contact-info-list { display: flex; flex-direction: column; gap: 24px; }
.contact-info-item { align-items: flex-start; display: flex; gap: 16px; }
.contact-info-icon { align-items: center; background: rgba(0,136,184,.1); color: #0088b8; display: flex; flex-shrink: 0; height: 44px; justify-content: center; width: 44px; }
.contact-info-icon .site-icon { width: 22px; height: 22px; }
.contact-info-text { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.contact-info-label { color: #888; font-size: .875rem; font-weight: 500; line-height: 1.4; }
.contact-info-value { color: #1a1a1a; font-size: 1rem; font-weight: 400; line-height: 1.6; }
a.contact-info-value:hover { color: #0088b8; }
.contact-form-wrapper { background: #f8f9fa; box-shadow: 0 4px 20px rgba(0,0,0,.12); display: flex; flex: 1; flex-direction: column; min-width: 0; padding: 40px; }
.contact-form-title { color: #1a1a1a; font-size: 1.5rem; font-weight: 400; letter-spacing: -.01em; line-height: 1.3; margin: 0 0 32px; }
.contact-form { display: flex; flex: 1; flex-direction: column; gap: 24px; }
.form-row { display: flex; gap: 20px; }
.form-row .form-group { flex: 1; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { color: #333; font-size: .9375rem; font-weight: 500; line-height: 1.4; }
.form-group .required { color: #56b8bb; }
.form-group input,
.form-group textarea { background: #fff; border: 1px solid #e0e0e0; border-radius: 0; color: #1a1a1a; font-size: 1rem; outline: none; padding: 14px 16px; transition: border-color .2s, box-shadow .2s; width: 100%; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: #999; }
.form-group input:focus,
.form-group textarea:focus { border-color: #56b8bb; box-shadow: 0 0 0 3px rgba(86,184,187,.1); }
.form-group textarea { min-height: 120px; resize: vertical; }
.submit-btn { align-self: flex-start; background: #0088b8; border: none; color: #fff; cursor: pointer; font-size: 1rem; font-weight: 500; padding: 16px 40px; transition: background .2s, transform .1s; }
.submit-btn:hover { background: #005571; }
.submit-btn:active { transform: scale(.98); }
.contact-map-wrapper { box-shadow: 0 4px 20px rgba(0,0,0,.12); margin-top: 48px; overflow: hidden; }
.contact-map-wrapper iframe { display: block; width: 100%; }
.fixed-contact { --fc-blue: var(--color-primary); --fc-cream: var(--color-secondary); display: block; overflow: visible; pointer-events: none; position: fixed; right: 0; top: 50%; transform: translateY(-50%); z-index: 9995; }
.fixed-contact-inner { box-shadow: -2px 0 12px rgba(0,0,0,.1); display: flex; flex-direction: column; pointer-events: auto; }
.fixed-contact-item { align-items: stretch; color: inherit; display: flex; height: auto; overflow: visible; position: relative; text-decoration: none; width: auto; }
.fixed-contact-item + .fixed-contact-item .fixed-contact-btn { border-top: 1px solid rgba(0,0,0,.08); }
.fixed-contact-btn { align-items: center; background-color: var(--fc-blue); color: #fff; display: flex; flex-shrink: 0; height: 70px; justify-content: center; transition: background-color .2s ease, color .2s ease; width: 70px; }
.fixed-icon { width: 26px; height: 26px; }
.fixed-contact-tooltip { background-color: var(--fc-blue); box-shadow: 0 2px 10px rgba(0,0,0,.15); color: #fff; font-size: .875rem; font-weight: 500; opacity: 0; padding: 10px 14px; pointer-events: none; position: absolute; right: calc(100% + 10px); top: 50%; transform: translate(10px,-50%); transition: opacity .22s ease, transform .22s ease, visibility .22s ease; visibility: hidden; white-space: nowrap; z-index: 2; }
.fixed-contact-tooltip:after { border-color: transparent transparent transparent var(--fc-blue); border-style: solid; border-width: 7px 0 7px 8px; content: ""; position: absolute; right: -8px; top: 50%; transform: translateY(-50%); }
.fixed-contact-item:hover .fixed-contact-btn { background-color: var(--fc-cream); color: var(--fc-blue); }
.fixed-contact-item:hover .fixed-contact-tooltip { opacity: 1; pointer-events: auto; transform: translateY(-50%); visibility: visible; }
.scroll-top-btn { align-items: center; background-color: #22c55e; border: none; border-radius: 50%; box-shadow: 0 4px 12px rgba(0,0,0,.15); color: #fff; cursor: pointer; display: flex; height: 44px; justify-content: center; opacity: 0; pointer-events: auto; position: absolute; right: 10px; top: calc(100% + 100px); transform: translateY(10px); transition: opacity .3s ease, visibility .3s ease, transform .3s ease, background-color .2s ease; visibility: hidden; width: 44px; }
.scroll-top-btn.is-visible { opacity: 1; transform: translateY(0); visibility: visible; }
.scroll-icon { width: 32px; height: 32px; }
.mobile-contact-bar { display: none !important; }
@media (max-width: 900px) {
  .contact-content { padding: 48px 20px; }
  .contact-grid { flex-direction: column; gap: 32px; }
  .contact-info { flex: none; max-width: 100%; width: 100%; }
  .contact-form-wrapper { box-shadow: 4px 4px rgba(0,0,0,.1); padding: 24px; width: 100%; }
  .form-row { flex-direction: column; gap: 20px; }
}
@media (max-width: 768px) {
  .contact-banner { padding: 40px 20px; }
  .banner-text-overlay h1 { font-size: 1.75rem; }
  .banner-text-overlay p { font-size: 1rem; }
  .contact-content { padding: 40px 20px; }
  .contact-form-wrapper { padding: 20px; }
  .submit-btn { width: 100%; }
}
@media (max-width: 640px) {
  body { padding-bottom: calc(70px + env(safe-area-inset-bottom, 0px)); }
  .fixed-contact { background-color: transparent; inset: auto auto 0 0; padding-bottom: env(safe-area-inset-bottom, 0px); transform: none; width: 100%; }
  .fixed-contact-inner { background-color: var(--fc-blue); box-shadow: 0 -2px 12px rgba(0,0,0,.12); flex: 1; flex-direction: row; width: 100%; }
  .fixed-contact-item { flex: 1; min-width: 0; }
  .fixed-contact-item + .fixed-contact-item .fixed-contact-btn { border-left: 1px solid rgba(255,255,255,.28); border-top: none; }
  .fixed-contact-btn { height: 70px; width: 100%; }
  .fixed-contact-tooltip { display: none; }
  .scroll-top-btn { display: none; }
  .contact-form-wrapper { padding: 16px; }
  .form-group input, .form-group textarea { padding: 12px 14px; }
  .submit-btn { padding: 14px 32px; }
}


/* Final contact parity specificity fixes. */
.fixed-contact .fixed-contact-item { background: transparent; border-bottom: 0; }
.fixed-contact .fixed-contact-btn { position: static; right: auto; top: auto; padding: 0; opacity: 1; pointer-events: auto; transform: none; white-space: normal; }
.fixed-contact .fixed-contact-item:hover .fixed-contact-btn { opacity: 1; transform: none; }
.contact-form .submit-btn { align-self: flex-start; background: #0088b8; border: none; color: #fff; cursor: pointer; font-size: 1rem; font-weight: 500; padding: 16px 40px; }
.contact-form .submit-btn:hover { background: #005571; }
@media (max-width: 768px) { .contact-form .submit-btn { width: 100%; } }

/* Home WHY / certification / factory source-parity structure. */
.why {
  background-color: var(--color-white);
  padding-top: 24px;
  padding-bottom: 48px;
}
.why .container > .section-header-block:first-child {
  margin-bottom: 24px;
}
.why .container > .section-header-block:first-child .section-subtitle {
  margin-bottom: 0;
}
.stats-section {
  margin-bottom: 40px;
}
.why .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
  margin-bottom: 0;
}
.why .stat-card {
  min-height: 0;
  padding: 32px 24px;
  text-align: center;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 0;
  box-shadow: none;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.why .stat-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.why .stat-icon,
.why .why-feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  background-color: rgba(0, 136, 184, .1);
  border-radius: 10px;
}
.why .stat-icon svg,
.why .why-feature-icon svg,
.why .why-point-icon svg {
  width: 28px;
  height: 28px;
  display: block;
  fill: currentColor;
}
.why .stat-num {
  color: var(--color-text);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 8px;
}
.why .stat-label {
  color: var(--color-muted);
  font-size: .85rem;
  line-height: 1.4;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 36px;
}
.why-point {
  display: flex;
  gap: 14px;
}
.why-point-icon {
  width: 32px;
  height: 32px;
  margin-top: 2px;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  background-color: rgba(0, 136, 184, .1);
  border-radius: 50%;
}
.why .why-point-icon svg {
  width: 20px;
  height: 20px;
}
.why-point-title {
  margin: 0 0 6px;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}
.why-point-desc {
  margin: 0;
  color: var(--color-muted);
  font-size: .875rem;
  line-height: 1.5;
}
.why-actions {
  display: flex;
  gap: 16px;
  margin: 0;
  justify-content: flex-start;
}
.why-actions .btn-primary,
.why-actions .btn-outline,
.btn-sharp,
.btn-sharp-outline {
  min-height: 44px;
  padding: 12px 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  font-weight: 700;
}
.why-actions .btn-primary,
.btn-sharp {
  color: #fff;
  background: var(--color-primary);
  border: 1px solid var(--color-primary);
}
.why-actions .btn-outline,
.btn-sharp-outline {
  color: var(--color-primary);
  background: #fff;
  border: 1px solid var(--color-primary);
}
.why-visual {
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
}
.why-image-wrap {
  position: relative;
  overflow: hidden;
}
.why-image {
  width: 100%;
  height: 400px;
  display: block;
  object-fit: cover;
  transition: transform 8s ease-out;
}
.why-image-wrap:hover .why-image {
  transform: scale(1.04);
}
.why-fountain {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 0;
  height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.why-fountain-wave {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  width: 68px;
  height: 68px;
  margin-left: -34px;
  margin-top: -34px;
  border: 2px solid rgba(255, 255, 255, .9);
  border-radius: 50%;
  box-shadow: 0 0 0 1.5px rgba(0, 136, 184, .55), 0 0 14px rgba(0, 181, 238, .5);
  animation: why-fountain-ripple 2.4s cubic-bezier(.22, .61, .36, 1) infinite;
}
.why-fountain-wave--b { animation-delay: .8s; }
.why-fountain-wave--c { animation-delay: 1.6s; }
.why-fountain-halo {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 62px;
  height: 62px;
  margin-left: -31px;
  margin-top: -31px;
  background: rgba(0, 136, 184, .38);
  border: 1px solid rgba(255, 255, 255, .88);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(255,255,255,.3), inset 0 0 14px rgba(255,255,255,.18), 0 0 20px rgba(0,181,238,.35);
  animation: why-fountain-halo 2.2s ease-in-out infinite;
}
.why-fountain-disk,
.why-fountain-core {
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 50%;
}
.why-fountain-disk {
  z-index: 2;
  width: 28px;
  height: 28px;
  margin-left: -14px;
  margin-top: -14px;
  background: #005571;
  box-shadow: 0 1px 6px rgba(0,0,0,.18), inset 0 -1px 4px rgba(0,0,0,.1);
  animation: why-fountain-disk 2.2s ease-in-out infinite;
}
.why-fountain-core {
  z-index: 3;
  width: 12px;
  height: 12px;
  margin-left: -6px;
  margin-top: -6px;
  background: #fff;
  box-shadow: 0 0 0 1.5px rgba(255,255,255,.45), 0 0 10px rgba(255,255,255,.9), 0 0 18px rgba(0,181,238,.4);
  animation: why-fountain-core 1.8s ease-in-out infinite;
}
@keyframes why-fountain-ripple {
  0% { opacity: .9; transform: scale(.45); }
  80%, 100% { opacity: 0; transform: scale(1.35); }
}
@keyframes why-fountain-halo {
  0%, 100% { transform: scale(.98); }
  50% { transform: scale(1.05); }
}
@keyframes why-fountain-disk {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}
@keyframes why-fountain-core {
  0%, 100% { opacity: .85; }
  50% { opacity: 1; }
}
.why-features {
  margin-top: 56px;
}
.why-features-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
}
.why-feature-card {
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--color-border);
  border-radius: 0;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.why-feature-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.why-feature-title {
  margin: 0 0 10px;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}
.why-feature-desc {
  margin: 0;
  color: var(--color-muted);
  font-size: .8rem;
  line-height: 1.6;
}
.enterprise-cert {
  margin-top: 56px;
  text-align: center;
}
.scene {
  width: 100%;
  height: 400px;
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  perspective: 1500px;
  perspective-origin: 50% 50%;
  mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
}
.enterprise-cert .carousel {
  position: relative;
  width: 100%;
  height: 100%;
}
.enterprise-cert .carousel .item {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 280px;
  height: 380px;
  margin-left: -140px;
  margin-top: -190px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(0) scale(.72) rotateY(0);
  transition: transform .45s cubic-bezier(.25,1,.5,1), opacity .35s ease, z-index .35s ease, filter .35s ease;
  backface-visibility: hidden;
}
.enterprise-cert .carousel .item--center {
  z-index: 6;
  opacity: 1;
  transform: translateX(0) scale(1) rotateY(0);
}
.enterprise-cert .carousel .item--left-1 {
  z-index: 5;
  opacity: .72;
  transform: translateX(-190px) scale(.86) rotateY(24deg);
  filter: brightness(.92);
}
.enterprise-cert .carousel .item--right-1 {
  z-index: 5;
  opacity: .72;
  transform: translateX(190px) scale(.86) rotateY(-24deg);
  filter: brightness(.92);
}
.enterprise-cert .carousel .item--left-2 {
  z-index: 4;
  opacity: .38;
  transform: translateX(-345px) scale(.72) rotateY(36deg);
  filter: brightness(.86);
}
.enterprise-cert .carousel .item--right-2 {
  z-index: 4;
  opacity: .38;
  transform: translateX(345px) scale(.72) rotateY(-36deg);
  filter: brightness(.86);
}
.enterprise-cert .carousel .item--far {
  z-index: 1;
  opacity: 0;
  pointer-events: none;
}
.cert-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cert-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
  padding: 0;
}
.cert-dot {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, .25);
  cursor: pointer;
  transition: background .2s ease;
}
.cert-dot.active { background: #000; }
.certificate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}
.certificate-card {
  margin: 0;
  text-align: center;
}
.certificate-card img {
  width: 100%;
  aspect-ratio: .72 / 1;
  object-fit: contain;
  background: #fff;
  box-shadow: 0 8px 26px rgba(0, 0, 0, .08);
}
.certificate-card h2 {
  margin: 12px 0 0;
  color: #1a1a1a;
  font-size: 16px;
  line-height: 1.4;
}
.factory-overview {
  padding-top: 32px;
  padding-bottom: 48px;
  background-color: #fafaf8;
}
.factory-group.factory-loop {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}
.factory-group.factory-loop .factory-item {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
}
.factory-group.factory-loop .factory-item:first-child {
  grid-row: 1 / span 2;
}
.factory-group.factory-loop .factory-img {
  width: 100%;
  height: 243px;
  display: block;
  object-fit: cover;
}
.factory-group.factory-loop .factory-item:first-child .factory-img {
  height: 500px;
}
.factory-group.factory-loop .factory-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 10px 16px;
  color: #fff;
  background: rgba(0, 136, 184, .84);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.4;
  text-align: left;
}
.factory-group.factory-loop .factory-item:not(:first-child) .factory-label {
  padding: 8px 12px;
  font-size: 16px;
}
@media (max-width: 1024px) {
  .why { padding-top: 54px; }
  .why .stats-grid,
  .why-features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .why-points {
    grid-template-columns: 1fr;
  }
  .why-actions {
    flex-direction: column;
    gap: 14px;
  }
  .why-actions .btn-primary,
  .why-actions .btn-outline {
    width: 100%;
    min-height: 52px;
  }
  .why-image {
    height: 300px;
  }
  .enterprise-cert,
  .why-features {
    margin-top: 40px;
  }
  .scene {
    height: 300px;
  }
  .enterprise-cert .carousel .item {
    width: 200px;
    height: 280px;
    margin-left: -100px;
    margin-top: -140px;
  }
  .enterprise-cert .carousel .item--left-1 { transform: translateX(-130px) scale(.82) rotateY(22deg); }
  .enterprise-cert .carousel .item--right-1 { transform: translateX(130px) scale(.82) rotateY(-22deg); }
  .enterprise-cert .carousel .item--left-2,
  .enterprise-cert .carousel .item--right-2 {
    opacity: 0;
  }
  .factory-group.factory-loop {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 14px;
  }
  .factory-group.factory-loop .factory-item:first-child {
    grid-row: auto;
  }
  .factory-group.factory-loop .factory-img,
  .factory-group.factory-loop .factory-item:first-child .factory-img {
    height: 300px;
  }
}
@media (max-width: 640px) {
  .why .stats-grid,
  .why-features-grid {
    grid-template-columns: 1fr;
  }
  .why .stat-card {
    padding: 20px 16px;
  }
  .why .stat-num {
    font-size: 1.5rem;
  }
  .why .stat-label {
    font-size: .75rem;
  }
  .why-image-wrap:hover .why-image {
    transform: none;
  }
  .why-fountain-wave,
  .why-fountain-halo,
  .why-fountain-disk,
  .why-fountain-core {
    animation: none;
  }
  .why-fountain-wave {
    opacity: .4;
    transform: scale(1.15);
  }
  .factory-group.factory-loop .factory-img,
  .factory-group.factory-loop .factory-item:first-child .factory-img {
    height: 220px;
  }
}

/* Product inquiry page without selected-products side module. */
.inquiry-page { background: #fff; }
.inquiry-shell {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 42px;
  align-items: start;
}
.inquiry-copy { padding: 44px 0; }
.inquiry-copy h2 {
  margin: 10px 0 16px;
  color: #1a1a1a;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.15;
}
.inquiry-copy p {
  margin: 0;
  color: #4a4a4a;
  font-size: 1rem;
  line-height: 1.85;
}
.inquiry-copy .inquiry-body p + p { margin-top: 12px; }
.inquiry-form-panel {
  padding: 40px;
  background: #f8f9fa;
  box-shadow: 0 4px 20px rgba(0,0,0,.12);
}
.inquiry-form-panel h2 {
  margin: 0 0 28px;
  color: #1a1a1a;
  font-size: 1.5rem;
  font-weight: 400;
}
.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.inquiry-form label {
  display: grid;
  gap: 8px;
  color: #333;
  font-size: .9375rem;
  font-weight: 500;
}
.inquiry-form .full { grid-column: 1 / -1; }
.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 0;
  outline: none;
  background: #fff;
  color: #1a1a1a;
}
.inquiry-form input:focus,
.inquiry-form textarea:focus {
  border-color: #56b8bb;
  box-shadow: 0 0 0 3px rgba(86,184,187,.1);
}
.inquiry-form button {
  width: fit-content;
  padding: 16px 40px;
  border: 0;
  color: #fff;
  background: #0088b8;
  cursor: pointer;
}
.inquiry-form button:hover { background: #005571; }

/* About page source-site layout. */
.about-page { background: #fff; }
.about-banner {
  width: 100%;
  padding: 40px 20px;
  background: #56b8bb;
}
.about-banner .banner-text-overlay {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.about-banner h1 {
  margin: 0 0 15px;
  color: #fff;
  font-size: 2.5rem;
  font-weight: 350;
  line-height: 1.2;
}
.about-banner p {
  max-width: 600px;
  margin: 0 auto;
  color: #fff;
  font-size: 1.125rem;
  line-height: 1.6;
}
.about-banner .breadcrumb {
  justify-content: flex-start;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.about-intro {
  padding: 80px min(10vw, 120px);
  background: #fff;
}
.about-intro-inner,
.about-supply-chain-inner,
.about-factory-inner,
.about-advantage-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 80px;
}
.about-intro-content {
  flex: 1;
  min-width: 0;
  margin-top: 60px;
}
.about-intro-media,
.about-factory-media,
.about-advantage-media {
  position: sticky;
  top: 24px;
  align-self: flex-start;
  flex: 0 0 50%;
  max-width: 560px;
}
.about-intro-img,
.about-factory-img,
.about-advantage-img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  box-shadow: 0 8px 40px rgba(0,0,0,.08);
}
.about-intro-title,
.about-supply-chain-title,
.about-factory-title,
.about-advantage-title {
  margin: 0 0 12px;
  color: #1a1a1a;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: -.01em;
}
.about-intro-company {
  margin: 0 0 8px;
  color: #56b8bb;
  font-size: 1.125rem;
  font-weight: 300;
}
.about-intro-desc,
.about-supply-chain-desc,
.about-factory-desc,
.about-advantage-desc,
.about-rich p {
  margin: 0 0 16px;
  color: #4a4a4a;
  font-size: 1rem;
  line-height: 1.85;
}
.about-intro-desc:last-child,
.about-supply-chain-desc:last-child,
.about-factory-desc:last-child,
.about-advantage-desc:last-child,
.about-rich p:last-child { margin-bottom: 0; }
.about-supply-chain {
  margin-top: -30px;
  padding: 0 min(10vw, 120px) 80px;
  background: #fff;
}
.about-supply-chain-media {
  position: sticky;
  top: 24px;
  align-self: flex-start;
  flex: 0 0 55%;
  max-width: 650px;
  height: 450px;
}
.about-supply-chain-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: fill;
}
.about-supply-chain-content {
  flex: 1;
  min-width: 0;
  margin-top: 30px;
}
.about-factory,
.about-advantage {
  padding: 0 min(10vw, 120px) 80px;
  background: #fff;
}
.about-factory-content,
.about-advantage-content {
  flex: 1;
  min-width: 0;
}
.about-factory-content { margin-top: -20px; }
@media (min-width: 769px) {
  .about-supply-chain-content { margin-left: -38px; }
  .about-intro-title { margin-top: -80px; }
}
@media (max-width: 900px) {
  .inquiry-shell {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .inquiry-copy { padding: 0; }
  .about-intro-inner,
  .about-factory-inner {
    flex-direction: column;
    gap: 24px;
  }
  .about-supply-chain-inner,
  .about-advantage-inner {
    flex-direction: column-reverse;
    gap: 24px;
  }
  .about-intro-media,
  .about-supply-chain-media,
  .about-factory-media,
  .about-advantage-media {
    position: static;
    flex: none;
    width: 100%;
    max-width: 100%;
  }
  .about-intro-content,
  .about-supply-chain-content,
  .about-factory-content,
  .about-advantage-content {
    margin-top: 0 !important;
    margin-left: 0 !important;
  }
  .about-intro-img,
  .about-factory-img,
  .about-advantage-img { aspect-ratio: 16 / 9; }
  .about-supply-chain-media { height: auto; }
  .about-supply-chain-img { height: auto; }
}
@media (max-width: 768px) {
  .inquiry-form-panel { padding: 24px; }
  .inquiry-form { grid-template-columns: 1fr; }
  .inquiry-form button { width: 100%; }
  .about-banner h1 { font-size: 1.75rem; }
  .about-banner p { font-size: 1rem; }
  .about-intro,
  .about-factory,
  .about-advantage { padding: 24px 20px 48px; }
  .about-supply-chain {
    margin-top: 0;
    padding: 12px 20px 48px;
  }
  .about-intro-title,
  .about-supply-chain-title,
  .about-factory-title,
  .about-advantage-title { font-size: 1.5rem; }
  .about-intro-company { font-size: 1rem; }
  .about-intro-desc,
  .about-supply-chain-desc,
  .about-factory-desc,
  .about-advantage-desc {
    font-size: .9375rem;
    line-height: 1.75;
  }
}
