/* Topzir theme — semantic layout aligned to design tokens */
/* tz-list-card-1513 */

:root {
  --color-primary: #0dcfdb;
  --color-primary-hover: #30dae5;
  --color-text: #686868;
  --color-text-secondary: #9a9a9a;
  --color-text-dark: #2a2a2a;
  --color-divider: #d8d8d8;
  --color-cert-fda: #1c3d5b;
  --color-bg: #ffffff;
  --color-bg-muted: #f8f8f8;
  --color-border: rgba(0, 0, 0, 0.08);
  --font: "Noto Sans SC", "Noto Sans SC-Regular", "Segoe UI", sans-serif;
  --font-medium: "Noto Sans SC", "Noto Sans SC-Medium", sans-serif;
  --font-bold: "Noto Sans SC", "Noto Sans SC-Bold", sans-serif;
  --font-thin: "Noto Sans SC", "Noto Sans SC-Thin", sans-serif;
  --font-light: "Noto Sans SC", "Noto Sans SC-Light", sans-serif;
  --container: min(1920px, 100%);
  --header-container: min(1440px, calc(100% - 48px));
  --header-h: 72px;
  --radius: 4px;
  --home-col-left: 624fr;
  --home-col-right: 1272fr;
  --home-col-gap: 24px;
  --header-actions-gap: 32px;
  --nav-item-gap: 32px;
  --shadow-nav: 0 8px 32px rgba(0, 0, 0, 0.1);
  --shadow-card: 0 12px 40px rgba(0, 0, 0, 0.08);
  --teal-gradient: linear-gradient(135deg, #33c4cd 0%, #1a9aa3 100%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  font-family: var(--font);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

p {
  margin: 0;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.98);
  transition: box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-nav);
}

.site-header__inner {
  width: var(--header-container);
  margin-inline: auto;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-logo {
  flex-shrink: 0;
}

.site-logo__link,
.site-logo a {
  display: inline-flex;
  align-items: center;
}

.site-logo img,
.site-logo .custom-logo {
  max-height: 49px;
  width: auto;
}

.site-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  align-self: stretch;
}

.site-nav__list {
  display: flex;
  flex-wrap: nowrap;
  gap: var(--nav-item-gap);
  align-items: stretch;
  justify-content: center;
  height: 100%;
  min-height: var(--header-h);
}

.site-nav__list > li {
  position: relative;
  display: flex;
  align-items: stretch;
}

.site-nav__list > li > a {
  font-size: 14px;
  letter-spacing: -0.015em;
  color: var(--color-text);
  font-family: var(--font);
  font-weight: 400;
  transition: color 0.15s ease;
  display: inline-flex;
  align-items: center;
  height: 100%;
  position: relative;
}

.site-nav__list > li > a:hover,
.site-nav__list > li:hover > a,
.site-nav__list > li:focus-within > a,
.site-nav__list .current-menu-item > a,
.site-nav__list .current_page_item > a,
.site-nav__list .current-menu-ancestor > a,
.site-nav__list .current-menu-parent > a,
.site-nav__list .current_page_parent > a,
.site-nav__list .current_page_ancestor > a {
  color: var(--color-primary);
}

.site-nav__chevron {
  position: absolute;
  left: calc(100% + 4px);
  top: 50%;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  background: url("../image/icon_arrow_down_hover.svg") center / contain no-repeat;
  display: block;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
}

/* About: default matches other items; arrow only on hover / focus */
.site-nav__list > li:hover > a .site-nav__chevron,
.site-nav__list > li:focus-within > a .site-nav__chevron {
  opacity: 1;
}

.site-nav__list .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 160px;
  padding: 10px 0;
  background: #fff;
  box-shadow: var(--shadow-nav);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(0);
  transition: opacity 0.15s ease, visibility 0.15s ease;
  z-index: 20;
}

.site-nav__list > li:hover > .sub-menu,
.site-nav__list > li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.site-nav__list .sub-menu a {
  display: block;
  padding: 8px 14px;
  font-size: 13px;
  color: var(--color-text);
  font-family: var(--font);
  font-weight: 400;
  height: auto;
}

.site-nav__list .sub-menu a:hover {
  color: var(--color-primary);
  background: #f7fbfc;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: var(--header-actions-gap);
  flex-shrink: 0;
}

.site-header__lang {
  display: inline-flex;
  line-height: 0;
  border: 1px solid var(--color-divider);
  border-radius: var(--radius);
  overflow: hidden;
}

.site-header__cta {
  font-size: 12px;
  font-family: var(--font-bold);
  font-weight: 700;
  letter-spacing: -0.015em;
  padding: 10px 16px;
  border: 1px solid var(--color-text);
  border-radius: var(--radius);
  color: var(--color-text);
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}

.site-header__cta:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

.site-nav__toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  padding: 8px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.site-nav__toggle span {
  display: block;
  height: 2px;
  background: var(--color-text-dark);
  width: 100%;
}

/* Hero */
.hero {
  position: relative;
  background: linear-gradient(180deg, #fafafa 0%, #f5f5f5 100%);
  overflow: hidden;
}

.hero__inner {
  width: var(--container);
  margin-inline: auto;
  position: relative;
  min-height: clamp(420px, 70vh, 640px);
  padding: 48px 0 64px;
}

.hero__slide {
  display: none;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: center;
}

.hero__slide.is-active {
  display: grid;
  animation: fadeIn 0.35s ease;
}

.hero__dots {
  position: absolute;
  left: 0;
  bottom: 24px;
}

.hero__card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(3px);
  padding: 32px 28px;
  max-width: 480px;
}

.hero__title {
  font-family: var(--font-thin);
  font-weight: 100;
  font-size: clamp(36px, 5vw, 48px);
  letter-spacing: -0.05em;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: 12px;
}

.hero__subtitle {
  font-family: var(--font-medium);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.05em;
  line-height: 1.2;
  color: var(--color-text-dark);
  margin-bottom: 16px;
}

.hero__text {
  font-size: 16px;
  line-height: 1.3;
  margin-bottom: 24px;
}

.hero__media {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__media img {
  width: 100%;
  max-height: 480px;
  object-fit: contain;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 20px;
  color: var(--color-primary);
  font-size: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  font-family: var(--font-bold);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.2;
  padding: 10px 24px;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.btn:hover {
  opacity: 0.92;
}

.btn--primary {
  background: var(--color-primary);
  color: #fff;
}

.btn--ghost {
  background: transparent;
  color: var(--color-primary);
  padding-inline: 0;
}

.btn--outline {
  background: #fff;
  color: var(--color-text);
  border: 1px solid var(--color-divider);
}

.carousel-dots {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  width: 60px;
  height: 8px;
  margin-top: 20px;
}

.carousel-dots button {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: var(--radius);
  padding: 0;
  background: rgba(26, 26, 26, 0.5);
  cursor: pointer;
  flex: 0 0 auto;
}

.carousel-dots button.is-active {
  width: 24px;
  background: var(--color-primary-hover);
}

.carousel-slide {
  display: none;
}

.carousel-slide.is-active {
  display: block;
  animation: fadeIn 0.35s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Sections */
.section {
  padding: 72px 0;
}

.section--tight {
  padding: 48px 0;
}

.section--muted {
  background: var(--color-bg-muted);
}

.section__title {
  font-family: var(--font-thin);
  font-weight: 100;
  font-size: 32px;
  letter-spacing: -0.05em;
  line-height: 1.2;
  color: var(--color-text);
  max-width: 920px;
  margin: 0;
}

.section__lead {
  margin-top: 8px;
  font-size: 16px;
  font-family: var(--font);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.3;
  color: var(--color-text);
  max-width: 820px;
}

.section-head {
  width: var(--container);
  margin-inline: auto;
  margin-bottom: 36px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.section-head__mark {
  width: 16px;
  height: 16px;
  background: url("../image/IconArrowDown16.svg") center / contain no-repeat;
  flex-shrink: 0;
  margin-top: 8px;
}

/* About cards */
.about-grid {
  width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.about-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  background: var(--teal-gradient);
}

.about-card--dark {
  background: var(--color-primary);
}

.about-card__label {
  font-size: 13px;
  opacity: 0.9;
  margin-bottom: 8px;
}

.about-card__title {
  font-family: var(--font-medium);
  font-size: 28px;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
  color: #fff;
}

.about-card__text {
  font-size: 15px;
  line-height: 1.4;
  max-width: 36ch;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.92);
}

.about-card .btn {
  align-self: flex-start;
  background: #fff;
  color: var(--color-primary);
}

/* Products */
.products-block {
  width: var(--container);
  margin-inline: auto;
}

.product-tabs {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 64px;
  margin-bottom: 24px;
  padding: 48px 0 0;
  border-bottom: 1px solid var(--color-divider);
}

.product-tabs__btn {
  position: relative;
  border: 0;
  background: none;
  padding: 0 0 14px;
  font-size: 24px;
  font-family: var(--font);
  font-weight: 400;
  color: #8d8d8d;
  cursor: pointer;
  letter-spacing: -0.05em;
  line-height: 1.2;
}

.product-tabs__btn.is-active {
  color: var(--color-primary-hover);
  font-family: var(--font-bold);
  font-weight: 700;
}

.product-tabs__btn.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--color-primary-hover);
}

.product-panels [data-tab-panel] {
  display: none;
}

.product-panels [data-tab-panel].is-active {
  display: block;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.product-card {
  border: 1px solid var(--color-border);
  background: #fff;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: box-shadow 0.2s ease;
}

.product-card:hover {
  box-shadow: var(--shadow-card);
}

.product-card__media {
  aspect-ratio: 4 / 3;
  background: linear-gradient(160deg, #33c4cd 0%, #1c8f97 100%);
  position: relative;
  overflow: hidden;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__overlay {
  position: absolute;
  inset: 0;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.35) 100%);
  pointer-events: none;
}

.product-card__overlay-title {
  font-family: var(--font-medium);
  font-weight: 500;
  font-size: 42px;
  letter-spacing: -0.05em;
  line-height: 1.2;
}

.product-card__tags {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.95;
}

.product-card__body {
  padding: 16px 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.product-card__title {
  font-size: 24px;
  font-family: var(--font-light);
  font-weight: 300;
  color: var(--color-text);
  letter-spacing: -0.05em;
  line-height: 1.2;
}

.product-card__excerpt {
  font-size: 16px;
  font-family: var(--font-medium);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.3;
  flex: 1;
}

.product-card__link {
  color: var(--color-primary);
  font-size: 14px;
  font-family: var(--font-medium);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1;
}

.products-banner {
  margin-top: 24px;
  background: var(--color-primary);
  color: #fff;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}

.products-banner h3 {
  margin: 0 0 8px;
  font-family: var(--font-medium);
  font-size: 22px;
  letter-spacing: -0.03em;
  color: #fff;
}

.products-banner p {
  margin: 0;
  font-size: 15px;
  opacity: 0.95;
}

/* Blog cards */
.post-grid {
  width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.post-card {
  border: 1px solid var(--color-border);
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease;
  overflow: hidden;
}

.post-card:hover {
  box-shadow: var(--shadow-card);
}

.post-card__media {
  aspect-ratio: 16 / 10;
  background: var(--color-bg-muted);
  overflow: hidden;
}

.post-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-card__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.post-card__title {
  font-size: 16px;
  font-family: var(--font-medium);
  color: var(--color-text-dark);
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.post-card__meta {
  font-size: 12px;
  color: var(--color-text-secondary);
}

.post-card__excerpt {
  font-size: 14px;
  line-height: 1.35;
  flex: 1;
}

/* Certificates */
.certs {
  width: var(--container);
  margin-inline: auto;
}

.certs__layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  align-items: center;
}

.certs__badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cert-badge {
  background: var(--color-cert-fda);
  color: #fff;
  min-height: 160px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.cert-badge--light {
  background: #fff;
  color: var(--color-cert-fda);
  border: 1px solid var(--color-divider);
}

.cert-badge__label {
  font-size: 28px;
  font-family: var(--font-medium);
  letter-spacing: -0.04em;
}

.cert-badge__sub {
  font-size: 14px;
  margin-top: 8px;
  opacity: 0.9;
}

.certs__copy h3 {
  margin: 0 0 12px;
  font-size: 24px;
  font-family: var(--font-medium);
  color: var(--color-text);
}

.certs__copy p {
  font-size: 15px;
  line-height: 1.4;
  margin-bottom: 16px;
}

.certs__nav {
  display: flex;
  gap: 12px;
  align-items: center;
}

.certs__nav button {
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-divider);
  background: #fff url("../image/PreviousButtondarkdefault.svg") center / 20px no-repeat;
  cursor: pointer;
}

.certs__nav button[data-next] {
  background-image: url("../image/Nextbuttondarkdefault.svg");
}

/* Exhibition */
.exhibition {
  width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
}

.exhibition__feature {
  min-height: 320px;
  background: var(--color-bg-muted);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: #fff;
}

.exhibition__feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.exhibition__feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.55));
}

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

.exhibition__feature h3 {
  margin: 0 0 8px;
  font-size: 28px;
  font-family: var(--font-medium);
  color: #fff;
}

.exhibition__side {
  display: grid;
  gap: 16px;
}

.exhibition-card {
  border: 1px solid var(--color-border);
  padding: 20px;
  background: #fff;
}

.exhibition-card h4 {
  margin: 0 0 8px;
  font-size: 18px;
  font-family: var(--font-medium);
  color: var(--color-text-dark);
}

.exhibition-card p {
  font-size: 14px;
  line-height: 1.35;
}

/* FAQ + CTA */
.faq-cta {
  width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: start;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--color-border);
}

.faq-item.is-open {
  background: #fff;
  box-shadow: var(--shadow-card);
}

.faq-item__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  padding: 16px 32px;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-light);
  font-weight: 300;
  font-size: 32px;
  color: var(--color-text);
  letter-spacing: -0.05em;
  line-height: 1.2;
}

.faq-item.is-open .faq-item__toggle {
  color: var(--color-primary);
}

.faq-item__question {
  flex: 1;
  min-width: 0;
}

.faq-item__icon {
  width: 16px;
  height: 16px;
  background: url("../image/icon_arrow_down_default.svg") center / contain no-repeat;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(180deg);
  background-image: url("../image/icon_arrow_up_hover.svg");
}

.faq-item__panel {
  display: none;
  padding: 0 32px 16px 64px;
  font-size: 16px;
  font-family: var(--font);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.3;
}

.faq-item.is-open .faq-item__panel {
  display: block;
}

.lead-box {
  background: #fff;
  border: 1px solid var(--color-border);
  padding: 28px;
}

.lead-box h3 {
  margin: 0 0 12px;
  font-size: 32px;
  font-family: var(--font-light);
  font-weight: 300;
  color: var(--color-text-dark);
  letter-spacing: -0.05em;
  line-height: 1.2;
}

.lead-box p {
  font-size: 16px;
  font-family: var(--font);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.3;
  margin-bottom: 20px;
}

.lead-form {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 16px;
}

.lead-form input[type="email"],
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--color-divider);
  padding: 14px 16px;
  font: inherit;
  color: var(--color-text);
  background: #fff;
}

.lead-form input[type="email"] {
  flex: 1;
  min-height: 64px;
  font-size: 24px;
  font-family: var(--font-light);
  font-weight: 300;
  letter-spacing: -0.05em;
  padding: 16px 24px;
}

.lead-form .btn {
  width: auto;
  flex-shrink: 0;
  padding: 16px 48px;
}

.contact-form .btn {
  width: 100%;
}

.form-notice {
  padding: 12px 14px;
  margin-bottom: 16px;
  font-size: 14px;
  border: 1px solid var(--color-divider);
}

.form-notice--ok {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.form-notice--err {
  border-color: #c44;
  color: #c44;
}

/* Footer */
.site-footer {
  background: #f9f9f9;
  padding: 56px 0 40px;
  margin-top: 40px;
}

.site-footer__inner {
  width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.1fr 1.35fr 1.7fr 1.1fr;
  gap: 36px;
  align-items: start;
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.site-footer__social {
  display: flex;
  gap: 10px;
}

.site-footer__social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #5a5a5a;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-footer__social a:hover {
  background: var(--color-primary);
}

.site-footer__copy {
  margin: 8px 0 0;
  font-size: 12px;
  color: var(--color-text);
  line-height: 1.4;
}

.site-footer__heading {
  margin: 0 0 16px;
  font-size: 18px;
  font-family: var(--font-medium);
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.site-footer__heading--spaced {
  margin-top: 28px;
}

.site-footer__subheading {
  margin: 0 0 8px;
  font-size: 14px;
  font-family: var(--font-bold);
  color: var(--color-text);
}

.site-footer__col a,
.site-footer__col span {
  font-size: 13px;
  color: var(--color-text);
  line-height: 1.45;
}

.site-footer__col a {
  display: inline-block;
  margin-bottom: 8px;
}

.site-footer__col a:hover {
  color: var(--color-primary);
}

.site-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.site-footer__contact li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
}

.site-footer__contact img {
  margin-top: 2px;
}

.site-footer__contact a {
  margin-bottom: 0;
}

.site-footer__product-groups {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 20px;
}

/* Inner pages */
.page-hero {
  padding: 48px 0 24px;
  background: linear-gradient(180deg, #fafafa, #fff);
}

.page-hero__inner {
  width: var(--container);
  margin-inline: auto;
}

.page-hero h1 {
  margin: 0;
  font-family: var(--font-thin);
  font-weight: 100;
  font-size: clamp(32px, 4vw, 44px);
  letter-spacing: -0.05em;
  color: var(--color-text);
}

.page-content,
.content-wrap {
  width: var(--container);
  margin: 0 auto 64px;
}

.entry-content {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
}

.entry-content h2,
.entry-content h3 {
  color: var(--color-text-dark);
  letter-spacing: -0.03em;
}

.entry-content img {
  margin: 16px 0;
}

.product-detail__gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  margin-bottom: 32px;
}

.product-detail__gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--color-border);
}

.product-detail__section {
  margin-bottom: 36px;
}

.product-detail__section h2 {
  margin: 0 0 12px;
  font-size: 22px;
  font-family: var(--font-medium);
}

.archive-grid {
  width: var(--container);
  margin: 0 auto 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pagination {
  width: var(--container);
  margin: 0 auto 64px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border: 1px solid var(--color-divider);
  font-size: 14px;
}

.pagination .current {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

.contact-form {
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  font-family: var(--font-medium);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.empty-state {
  width: var(--container);
  margin: 40px auto;
  padding: 40px;
  border: 1px dashed var(--color-divider);
  text-align: center;
}

/* Responsive */
@media (max-width: 1100px) {
  .product-grid,
  .post-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .hero__inner,
  .about-grid,
  .certs__layout,
  .exhibition,
  .faq-cta,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .hero__slide.is-active {
    grid-template-columns: 1fr;
  }

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

  .site-footer__cols {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --page-gutter: 16px;
    --container: 100%;
    --header-container: 100%;
    --header-h: 64px;
  }

  .site-header__inner {
    flex-wrap: wrap;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
  }

  .site-nav__toggle {
    display: flex;
  }

  .site-nav__list {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    background: #fff;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    height: auto;
    min-height: 0;
    padding: 24px;
    gap: 18px;
    box-shadow: var(--shadow-nav);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
    box-sizing: border-box;
  }

  .site-nav__list.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav__list > li {
    width: 100%;
  }

  .site-nav__list > li > a {
    height: auto;
    min-height: 40px;
  }

  .site-nav__list .menu-item-has-children > a .site-nav__chevron {
    position: static;
    margin-top: 0;
    margin-left: 4px;
    display: inline-block;
    opacity: 1;
  }

  .site-nav__list .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    padding: 8px 0 0 12px;
  }

  .site-header__actions {
    gap: 16px;
  }

  .site-header__cta {
    font-size: 11px;
    padding: 8px 10px;
  }

  .site-footer__product-groups,
  .site-footer__cols {
    grid-template-columns: 1fr;
  }

  .hero__inner {
    padding-top: 24px;
    min-height: 0;
  }

  .hero__slide.is-active {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .post-grid,
  .archive-grid,
  .certs__badges,
  .site-footer__cols {
    grid-template-columns: 1fr;
  }

  .products-banner {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 48px 0;
  }

  .pl-grid {
    grid-template-columns: 1fr;
  }

  .pd-hero__grid,
  .pd-main__inner,
  .pd-color__images {
    grid-template-columns: 1fr;
  }

  .pd-hero {
    min-height: 0;
  }

  .pd-procedure__steps {
    justify-content: flex-start;
  }

  .pd-procedure__steps li:not(:last-child)::after {
    display: none;
  }

  .pd-cases {
    grid-template-columns: 1fr;
  }
}

/* ========== Product list (prodoct) ========== */
.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.breadcrumb__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-family: var(--font-bold);
  letter-spacing: -0.015em;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
}

.breadcrumb__item:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 2px;
  background: url("../image/breadcrumbsarrow.svg") center / contain no-repeat;
  opacity: 0.7;
}

.breadcrumb__item.is-current,
.breadcrumb__item.is-current span {
  color: #fff;
}

.pl-hero .breadcrumb__item {
  color: rgba(255, 255, 255, 0.55);
}

.pl-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 48px 0 56px;
  background: #143038;
}

.pl-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.pl-hero__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(120deg, rgba(20, 40, 48, 0.82) 0%, rgba(13, 80, 90, 0.55) 55%, rgba(13, 207, 219, 0.35) 100%);
}

.pl-hero__inner {
  position: relative;
  z-index: 2;
}

.pl-hero__inner,
.pl-list__inner {
  width: var(--container);
  margin-inline: auto;
}

.pl-hero__title {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--font-thin);
  font-weight: 100;
  font-size: clamp(28px, 3.6vw, 40px);
  letter-spacing: -0.04em;
  line-height: 1.2;
  color: #fff;
}

.pl-list {
  padding: 48px 0 72px;
  background: #fff;
}

.pl-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  justify-content: center;
  margin: 0 0 36px;
}

.pl-filters__btn {
  font-family: var(--font-medium);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--color-text-secondary);
  text-decoration: none;
  padding: 8px 4px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.pl-filters__btn:hover,
.pl-filters__btn.is-active {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

.pl-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 20px;
}

.pl-grid--related {
  grid-template-columns: repeat(4, 1fr);
}

.pl-card {
  background: #fff;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.pl-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  background: #fff;
  overflow: hidden;
  padding: 8px 16px 0;
}

.pl-card__media img {
  width: auto;
  max-width: 82%;
  height: auto;
  max-height: 92%;
  object-fit: contain;
  filter: drop-shadow(0 16px 18px rgba(0, 0, 0, 0.16));
}

.pl-card__body {
  padding: 8px 4px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.pl-card__titles {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pl-card__title {
  margin: 0;
  font-size: 22px;
  font-family: var(--font-medium);
  letter-spacing: -0.03em;
  color: var(--color-text);
  line-height: 1.25;
}

.pl-card__title a {
  color: inherit;
  text-decoration: none;
}

.pl-card__series {
  margin: 0;
  font-size: 14px;
  line-height: 1.3;
  color: var(--color-text);
}

.pl-card__specs {
  display: flex;
  flex-direction: column;
  margin-top: 4px;
  border-top: 1px solid #c5c5c5;
  flex: 1;
}

.pl-card__spec {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 0;
  border-bottom: 1px solid #c5c5c5;
}

.pl-card__spec:last-child {
  border-bottom: 0;
}

.pl-card__spec-label {
  font-size: 14px;
  font-family: var(--font-bold);
  color: var(--color-text);
}

.pl-card__spec-value {
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.35;
}

.pl-card__spec-range {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  font-size: 14px;
  color: var(--color-text);
  min-height: 28px;
}

.pl-card__spec-side {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 64px;
}

.pl-card__spec-side--right {
  align-items: flex-end;
  text-align: right;
}

.pl-card__spec-range small {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: var(--color-text);
}

.pl-card__spec-arrow {
  flex: 1;
  height: 10px;
  margin: 0 4px 6px;
  position: relative;
  background: repeating-linear-gradient(90deg, #9a9a9a 0 3px, transparent 3px 7px);
  background-size: 100% 1px;
  background-repeat: no-repeat;
  background-position: center;
}

.pl-card__spec-arrow::before,
.pl-card__spec-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 6px;
  height: 6px;
  border-top: 1.5px solid #9a9a9a;
  border-right: 1.5px solid #9a9a9a;
}

.pl-card__spec-arrow::before {
  left: 0;
  transform: translateY(-50%) rotate(-135deg);
}

.pl-card__spec-arrow::after {
  right: 0;
  transform: translateY(-50%) rotate(45deg);
}

.pl-card__cta {
  width: auto;
  align-self: flex-start;
  margin-top: 4px;
  min-width: 128px;
}

.pl-card__specs--simple .pl-card__spec {
  gap: 6px;
}

.pl-card__bullets {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pl-card__bullets li {
  position: relative;
  padding: 0 0 2px 12px;
  border: 0;
  font-size: 14px;
  line-height: 1.35;
  color: var(--color-text);
}

.pl-card__bullets li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
}

.pd-list-specs {
  margin: 16px 0 8px;
}

.pd-list-specs li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 0;
  border-bottom: 1px solid #c5c5c5;
}

/* ========== Product detail (product-4d) ========== */
.pd-hero {
  position: relative;
  min-height: 512px;
  padding: 24px 0 40px;
  color: #fff;
  overflow: hidden;
  background:
    linear-gradient(115deg, #0b2430 0%, #0d5e6a 42%, #12c9d6 78%, #7eeaf2 100%);
}

.pd-hero::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: min(76%, 1440px);
  background: url("../image/Vector9.svg") left center / cover no-repeat;
  opacity: 0.55;
  pointer-events: none;
}

.pd-hero__inner,
.pd-main__inner,
.pd-block__inner {
  width: var(--container);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.pd-hero .breadcrumb__item a {
  color: rgba(255, 255, 255, 0.55);
}

.pd-hero .breadcrumb__item.is-current,
.pd-hero .breadcrumb__item.is-current span {
  color: #fff;
}

.pd-hero__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: 24px 48px;
  align-items: end;
  min-height: 400px;
}

.pd-hero__copy {
  padding-bottom: 24px;
}

.pd-hero__title {
  margin: 0 0 12px;
  font-family: var(--font-thin);
  font-weight: 100;
  font-size: clamp(40px, 5vw, 56px);
  letter-spacing: -0.05em;
  line-height: 1.1;
  color: #fff;
}

.pd-hero__series {
  margin: 0 0 32px;
  font-size: 22px;
  font-family: var(--font-medium);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: #fff;
}

.pd-hero__kpis {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 56px;
}

.pd-kpi__num {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  line-height: 1;
}

.pd-kpi__value {
  font-size: clamp(40px, 4.4vw, 56px);
  font-family: var(--font-medium);
  font-weight: 500;
  letter-spacing: -0.04em;
  color: #fff;
}

.pd-kpi__unit {
  font-size: 28px;
  font-family: var(--font-medium);
  font-weight: 300;
  line-height: 1.1;
  color: #fff;
}

.pd-kpi__label {
  display: block;
  margin-top: 10px;
  font-size: 16px;
  font-family: var(--font-bold);
  font-weight: 600;
  color: #fff;
}

.pd-hero__visual {
  position: relative;
  min-height: 360px;
}

.pd-hero__media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pd-hero__media img {
  width: min(100%, 520px);
  max-height: 460px;
  object-fit: contain;
  margin-inline: auto;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.18));
}

.pd-hero__aside {
  position: absolute;
  right: 0;
  bottom: 8px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  max-width: 220px;
}

.pd-hero__inset {
  width: 168px;
  height: 112px;
  object-fit: cover;
  border-radius: 2px;
}

.pd-hero__caption {
  margin: 0;
  font-size: 14px;
  font-family: var(--font);
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.92);
  padding: 6px 10px;
}

.pd-main {
  padding: 64px 0;
  background: #fff;
}

.pd-main__inner {
  display: grid;
  grid-template-columns: 480px minmax(0, 1fr);
  gap: 64px 96px;
  align-items: center;
}

.pd-main__media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}

.pd-main__media img {
  width: 100%;
  max-width: 442px;
  object-fit: contain;
}

.pd-headline {
  margin: 0 0 20px;
  font-family: var(--font-thin);
  font-weight: 100;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.05em;
  line-height: 1.15;
  color: var(--color-text);
  text-transform: uppercase;
}

.pd-features {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.pd-features li {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--color-text);
}

.pd-procedure {
  margin-top: 8px;
}

.pd-procedure__title {
  margin: 0 0 16px;
  font-size: 22px;
  font-family: var(--font-medium);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--color-text);
}

.pd-procedure__steps {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 12px 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pd-procedure__steps li {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 88px;
  text-align: center;
}

.pd-procedure__steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 36px;
  left: calc(100% + 4px);
  width: 16px;
  height: 16px;
  background: url("../image/icon_arrow_right_default.svg") center / contain no-repeat;
}

.pd-procedure__icon,
.pd-procedure__placeholder {
  display: block;
  width: 88px;
  height: 88px;
  border-radius: 4px;
  overflow: hidden;
  background: #f3f3f3;
}

.pd-procedure__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pd-procedure__placeholder {
  background:
    radial-gradient(circle at 50% 42%, #e8e8e8 0 28%, transparent 29%),
    linear-gradient(180deg, #f7f7f7 0%, #ececec 100%);
}

.pd-procedure__label {
  font-size: 14px;
  font-family: var(--font-bold);
  font-weight: 600;
  color: var(--color-text);
}

.pd-section-title {
  margin: 0 0 16px;
  font-family: var(--font-thin);
  font-weight: 100;
  font-size: clamp(32px, 3.5vw, 40px);
  letter-spacing: -0.05em;
  color: var(--color-text);
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.pd-block {
  padding: 48px 0;
  background: #fff;
}

.pd-block--muted {
  background: #f9f9f9;
}

.pd-color__images {
  display: grid;
  grid-template-columns: 1fr 0.25fr;
  gap: 16px;
  margin: 24px 0 20px;
}

.pd-color__images img {
  width: 100%;
  height: 112px;
  object-fit: cover;
}

.pd-color__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
}

.pd-color__chips li {
  font-size: 16px;
  font-family: var(--font-bold);
  font-weight: 600;
  color: var(--color-text);
}

.pd-indication__gallery {
  display: grid;
  gap: 12px;
  margin: 24px 0 16px;
}

.pd-indication__gallery img {
  width: 100%;
}

.pd-indication__labels {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 36px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pd-indication__labels li {
  font-size: 16px;
  font-family: var(--font-bold);
  font-weight: 600;
  color: var(--color-text);
}

.pd-cases {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.pd-case {
  background: #fff;
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.pd-case:hover {
  box-shadow: var(--shadow-card);
}

.pd-case__media {
  display: block;
  aspect-ratio: 16 / 11;
  background: #f3f3f3;
  overflow: hidden;
}

.pd-case__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pd-case__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  flex: 1;
}

.pd-case__date {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-secondary, #8a8a8a);
}

.pd-case__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  color: var(--color-text);
}

.pd-case__link {
  margin-top: auto;
  font-size: 12px;
  font-family: var(--font-bold);
  letter-spacing: 0.04em;
  color: var(--color-primary);
  text-decoration: none;
}

.pd-case__link:hover {
  text-decoration: underline;
}

@media (max-width: 1100px) {
  .pl-grid,
  .pl-grid--related,
  .pd-cases {
    grid-template-columns: repeat(2, 1fr);
  }

  .pd-hero__grid,
  .pd-main__inner,
  .pd-color__images {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .pd-hero__visual,
  .pd-hero__grid {
    min-height: 0;
  }

  .pd-hero__aside {
    position: static;
    max-width: none;
  }

  .pd-procedure__steps li:not(:last-child)::after {
    display: none;
  }
}

/* ========== Homepage v2 ?? 7 sections ========== */
.section-head--center {
  text-align: center;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  margin-bottom: 0;
  width: 100%;
}

.section-head--center .section__title {
  max-width: 1100px;
  text-align: center;
}

.section-head--center .section__lead {
  margin-top: 0;
  max-width: 920px;
  text-align: center;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: -0.015em;
  line-height: 1.3;
}

.section-head--center .section-head__mark {
  margin-top: 0;
}

.section-head--center .section-head__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.section__title--on-dark {
  color: #fff;
}

.section__title--light {
  font-family: var(--font-light);
  font-weight: 300;
}

/* 1. Hero Showcase */
.hs-hero {
  padding: 0;
  background: #fff;
}

.hs-hero__inner {
  width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, var(--home-col-left)) minmax(0, var(--home-col-right));
  gap: var(--home-col-gap);
  align-items: stretch;
  aspect-ratio: 1920 / 720;
}

.hs-hero__left {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #f3f3f3 center / cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 0;
  height: 100%;
}

.hs-hero__left-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.12) 100%);
  pointer-events: none;
}

.hs-hero__left-body {
  position: relative;
  z-index: 1;
  margin: 0 24px 24px;
  padding: 16px 32px;
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(2.67px);
  -webkit-backdrop-filter: blur(2.67px);
  border-radius: var(--radius);
}

.hs-hero__left-title {
  margin: 0;
  font-size: 48px;
  font-family: var(--font-thin);
  font-weight: 100;
  color: var(--color-text);
  letter-spacing: -0.05em;
  line-height: 1.2;
}

.hs-hero__left-sub {
  margin: 10px 0 0;
  font-size: 24px;
  font-family: var(--font-medium);
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: -0.05em;
  line-height: 1.2;
}

.hs-hero__left-text {
  margin: 14px 0 0;
  font-size: 16px;
  font-family: var(--font);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.3;
  color: var(--color-text);
}

.hs-hero__carousel {
  position: relative;
  border-radius: var(--radius);
  background: #f7f7f7;
  overflow: hidden;
  min-height: 0;
  height: 100%;
}

.hs-slide {
  display: none;
  position: absolute;
  inset: 0;
  background: #f7f7f7 center / cover no-repeat;
}

.hs-slide.is-active {
  display: block;
}

.hs-slide__btn {
  position: absolute;
  left: 58%;
  top: 64%;
  z-index: 2;
  padding: 16px 48px;
}

.hs-hero__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  cursor: pointer;
  z-index: 3;
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 40px 40px;
}

.hs-hero__nav--prev {
  left: 24px;
  background-image: url("../image/PreviousButtonlightdefault0.svg");
}

.hs-hero__nav--next {
  right: 24px;
  background-image: url("../image/Nextbuttonlighthover.svg");
}

.hs-hero__nav:hover {
  filter: brightness(1.05);
}

.hs-hero__dots.carousel-dots,
.hs-hero__dots {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  width: 60px;
  height: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  z-index: 3;
  margin: 0;
}

.hs-hero__dots.carousel-dots button,
.hs-hero__dots button {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: var(--radius);
  background: rgba(26, 26, 26, 0.5);
  cursor: pointer;
  padding: 0;
  flex: 0 0 auto;
}

.hs-hero__dots.carousel-dots button.is-active,
.hs-hero__dots button.is-active {
  width: 24px;
  background: var(--color-primary-hover);
}

/* 2. Reliable Supplier */
.rs-section {
  padding: 0;
  width: var(--container);
  margin-inline: auto;
}

.rs-section .section-head--center {
  padding: 32px 0;
  min-height: 150px;
  gap: 16px;
  justify-content: center;
  box-sizing: border-box;
}

.rs-section .section-head__mark {
  background-image: url("../image/IconArrowDown163.svg");
}

.rs-section .section__title {
  font-family: var(--font-light);
  font-weight: 300;
}

.li-section .section-head__mark {
  background-image: url("../image/IconArrowDown162.svg");
}

.pc-section .section-head__mark {
  background-image: url("../image/IconArrowDown161.svg");
}

.em-section .section-head__mark {
  background-image: url("../image/IconArrowDown160.svg");
}

.fl-section .section-head__mark {
  background-image: url("../image/IconArrowDown16.svg");
}

.li-section .section-head--center,
.em-section .section-head--center {
  gap: 32px;
  padding: 20px 0;
}

.pc-section .section-head--center {
  gap: 16px;
  padding: 32px 0;
}

.rs-grid {
  display: grid;
  grid-template-columns: minmax(0, var(--home-col-left)) minmax(0, var(--home-col-right));
  gap: var(--home-col-gap);
  margin-top: 0;
  aspect-ratio: 1920 / 768;
}

.rs-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #1a2c34 center / cover no-repeat;
  color: #fff;
  min-height: 0;
  height: 100%;
  display: flex;
}

.rs-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,207,219,.55) 0%, rgba(0,0,0,.35) 48%, rgba(0,0,0,.55) 100%);
}

.rs-card--lg .rs-card__shade {
  background: linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.45) 100%);
}

.rs-card__content {
  position: relative;
  z-index: 1;
  padding: 32px;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.rs-card__content--center {
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  max-width: 640px;
  margin-inline: auto;
}

.rs-card__label {
  margin: 0;
  font-size: 24px;
  font-family: var(--font-medium);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.2;
}

.rs-card__title {
  margin: 8px 0 0;
  font-size: 42px;
  font-family: var(--font-thin);
  font-weight: 100;
  letter-spacing: -0.05em;
  line-height: 1.2;
}

.rs-card--lg .rs-card__title {
  font-size: 64px;
}

.rs-card__text {
  margin: 12px 0 0;
  font-size: 24px;
  font-family: var(--font-light);
  font-weight: 300;
  letter-spacing: -0.05em;
  line-height: 1.2;
}

.rs-card__text--muted {
  opacity: .95;
  font-size: 16px;
  font-family: var(--font-light);
  font-weight: 300;
  letter-spacing: -0.015em;
  line-height: 1.3;
}

.rs-card__foot {
  margin-top: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.rs-card__logo {
  max-width: 110px;
  height: auto;
}

/* 3. Product Tabs */
.pt-section {
  padding: 48px 0 0;
  width: var(--container);
  margin-inline: auto;
}

.pt-panel {
  display: none;
}

.pt-panel.is-active {
  display: block;
}

.pt-layout {
  display: grid;
  grid-template-columns: minmax(0, var(--home-col-right)) minmax(0, var(--home-col-left));
  gap: var(--home-col-gap);
  margin-top: 24px;
  align-items: stretch;
  min-height: 0;
}

.pt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--home-col-gap);
  min-height: 0;
}

.pt-side {
  position: relative;
  min-height: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  background: #2a2a2a center / cover no-repeat;
  color: #fff;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
}

.pt-side__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.1) 20%, rgba(0,0,0,.72) 100%);
}

.pt-side__copy {
  position: relative;
  z-index: 1;
  padding: 28px 22px;
}

.pt-side__title {
  margin: 0;
  font-size: 32px;
  font-family: var(--font-light);
  font-weight: 300;
  letter-spacing: -0.05em;
  line-height: 1.2;
}

.pt-side__text {
  margin: 14px 0 0;
  font-size: 16px;
  font-family: var(--font);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.3;
}

.pt-side__range {
  margin: 8px 0 0;
  font-size: 14px;
  font-family: var(--font-bold);
}

/* 4. Lab Insights */
.li-section {
  padding: 0;
  width: var(--container);
  margin-inline: auto;
  background: transparent;
}

.li-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 0;
}

.li-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid #ececec;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.li-card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.li-card__media {
  display: block;
  height: 240px;
  aspect-ratio: auto;
  overflow: hidden;
  background: #1a1a1a;
  border-radius: 0;
}

.li-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.li-card__date {
  margin: 0;
  padding: 16px 32px 0;
  font-size: 14px;
  font-family: var(--font);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1;
  text-transform: capitalize;
  color: #8d8d8d;
}

.li-card__text {
  margin: 0;
  padding: 8px 32px 0;
  font-size: 16px;
  font-family: var(--font-medium);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.3;
  color: var(--color-text);
  flex: 1;
}

.li-card .product-card__link {
  padding: 12px 32px 16px;
}

/* 5. Proof & Certificates */
.pc-section {
  padding: 0;
  width: var(--container);
  margin-inline: auto;
}

.pc-section__title-line {
  display: block;
}

.pc-layout {
  display: grid;
  grid-template-columns: minmax(0, var(--home-col-left)) minmax(0, var(--home-col-right));
  gap: var(--home-col-gap);
  margin-top: 0;
  aspect-ratio: 1920 / 720;
}

.pc-left,
.pc-right {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #16324a center / cover no-repeat;
  min-height: 0;
  height: 100%;
}

.pc-left__panel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(28, 61, 91, 0.72);
  backdrop-filter: blur(3.33px);
  -webkit-backdrop-filter: blur(3.33px);
  color: #fff;
  padding: 16px 32px 32px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-end;
}

.pc-left__panel h3 {
  margin: 0 0 8px;
  font-size: 48px;
  font-family: var(--font-thin);
  font-weight: 100;
  letter-spacing: -0.05em;
  line-height: 1.2;
}

.pc-left__panel p {
  margin: 0;
  font-size: 16px;
  font-family: var(--font-medium);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.3;
  max-width: 420px;
}

.pc-left__logo {
  width: 167px;
  max-width: 28%;
  height: auto;
  flex-shrink: 0;
}

.pc-left__logo-text {
  font-size: 28px;
  font-family: var(--font-bold);
  letter-spacing: 0.04em;
}

.pc-right__shade {
  position: absolute;
  inset: 0;
  background: rgba(20, 40, 55, .35);
}

.pc-certs {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 48px 24px 160px;
  overflow: hidden;
  min-height: 0;
}

.pc-certs__track {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  width: max-content;
  transition: transform 0.35s ease;
  will-change: transform;
}

.pc-cert {
  flex: 0 0 199px;
  width: 199px;
  height: 271px;
  position: relative;
  background: transparent;
  border-radius: var(--radius);
  overflow: hidden;
  opacity: 0.55;
  transform: scale(0.96);
  transition: opacity 0.25s ease, transform 0.25s ease;
  box-shadow: none;
}

.pc-cert.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.pc-right .pc-cert.carousel-slide {
  display: block;
}

.pc-cert a {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
  position: relative;
}

.pc-cert img {
  position: absolute;
  left: 8px;
  top: 6px;
  width: 183px;
  height: 254px;
  object-fit: cover;
  border-radius: var(--radius);
  filter: drop-shadow(0px 2px 8px rgba(0, 20, 21, 0.05));
}

.pc-cert__label,
.pc-cert span.pc-cert__label {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 6px;
  width: auto;
  height: 36px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--color-primary);
  color: #fff;
  font-size: 16px;
  font-family: var(--font-medium);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.25;
  text-transform: uppercase;
  text-align: left;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 2px 8px rgba(0, 20, 21, 0.05);
}

.pc-cert__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  background: url("../image/Vector8.svg") center / contain no-repeat;
  display: inline-block;
}

.pc-certs__dots.hs-hero__dots,
.pc-certs .hs-hero__dots {
  position: relative;
  left: auto;
  bottom: auto;
  transform: none;
  margin: 0 auto;
  width: auto;
  justify-content: center;
  gap: 4px;
}

.pc-certs .hs-hero__dots button {
  width: 8px;
  height: 8px;
  background: var(--color-divider);
}

.pc-certs .hs-hero__dots button.is-active {
  width: 24px;
  background: var(--color-primary);
}

.pc-right__copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 24px;
  z-index: 2;
  color: #fff;
  text-align: center;
  max-width: none;
  padding: 0 24px 24px;
}

.pc-right__copy h3 {
  margin: 0;
  font-size: 48px;
  font-family: var(--font-thin);
  font-weight: 100;
  letter-spacing: -0.05em;
  line-height: 1.2;
}

.pc-right__copy p {
  margin: 8px 0 0;
  font-size: 32px;
  font-family: var(--font-light);
  font-weight: 300;
  letter-spacing: -0.05em;
  line-height: 1.2;
}

.pc-right .hs-hero__nav {
  background-color: transparent;
}

.pc-right .hs-hero__nav--prev {
  background-image: url("../image/PreviousButtondarkdefault.svg");
}

.pc-right .hs-hero__nav--next {
  background-image: url("../image/Nextbuttondarkdefault.svg");
}

/* 6. Exhibition Mosaic */
.em-section {
  padding: 0;
  width: var(--container);
  margin-inline: auto;
}

.em-mosaic {
  display: grid;
  grid-template-columns: minmax(0, var(--home-col-left)) minmax(0, var(--home-col-right));
  gap: var(--home-col-gap);
  margin-top: 0;
  aspect-ratio: 1920 / 920;
}

.em-left,
.em-top {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #333 center / cover no-repeat;
  color: #fff;
  min-height: 0;
}

.em-left {
  height: 100%;
}

.em-left__shade,
.em-top__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,.55) 100%);
}

.em-left__copy,
.em-top__copy {
  position: relative;
  z-index: 1;
  padding: 24px;
}

.em-left__year {
  margin: 0;
  font-size: 24px;
  font-family: var(--font-medium);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.2;
}

.em-left__copy h3 {
  margin: 6px 0 10px;
  font-size: 42px;
  font-family: var(--font-thin);
  font-weight: 100;
  letter-spacing: -0.05em;
  line-height: 1.2;
}

.em-left__copy p {
  margin: 0;
  font-size: 24px;
  font-family: var(--font-light);
  font-weight: 300;
  letter-spacing: -0.05em;
  line-height: 1.2;
}

.em-top {
  min-height: 0;
  display: flex;
  align-items: flex-end;
}

.em-top__title {
  margin: 0 0 6px;
  font-family: var(--font-light);
  font-weight: 300;
  font-size: 32px;
  letter-spacing: -0.05em;
  line-height: 1.2;
}

.em-top__copy p {
  margin: 0;
  font-size: 24px;
  font-family: var(--font-light);
  font-weight: 300;
  letter-spacing: -0.05em;
  line-height: 1.2;
}

.em-right {
  display: grid;
  grid-template-rows: minmax(0, 368fr) minmax(0, 526fr);
  gap: var(--home-col-gap);
  min-height: 0;
}

.em-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--home-col-gap);
  min-height: 0;
}

.em-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid #ececec;
  box-shadow: none;
  transition: box-shadow 0.2s ease;
  min-height: 0;
  height: 100%;
}

.em-card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.em-card__media {
  flex: 1 1 66%;
  min-height: 0;
  aspect-ratio: auto;
  overflow: hidden;
  background: #ddd;
}

.em-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.em-card__body {
  padding: 12px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* 7. FAQ Lead ? Pixso 8050_1842: 1920?920, padding 0 162px, panel 624px */
.fl-section {
  position: relative;
  padding: 0;
  color: var(--color-text);
  background: #fff;
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
}

.fl-section__head {
  width: 100%;
  padding: 0;
}

.fl-section .section-head--center {
  gap: 32px;
  padding: 20px 0;
}

.fl-section__body {
  position: relative;
  width: 100%;
  height: 920px;
  padding: 0;
  background: #2a2a2a center / cover no-repeat;
  color: #fff;
  overflow: hidden;
}

.fl-section__shade {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}

.fl-section__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  box-sizing: border-box;
  padding: 0 162px;
  gap: 510px;
}

.fl-panel {
  margin-top: 0;
  width: 624px;
  max-width: 624px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
}

.fl-section .faq-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fl-section .faq-item {
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  color: var(--color-text);
  border-radius: var(--radius);
  overflow: hidden;
  border: 0;
}

.fl-section .faq-item.is-open {
  background: #fff;
}

.lead-box--on-media {
  width: 100%;
  background: transparent;
  color: #fff;
  padding: 0;
  box-shadow: none;
  border: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.lead-box--on-media h3 {
  margin: 0;
  color: #fff;
  font-size: 32px;
  font-family: var(--font-light);
  font-weight: 300;
  letter-spacing: -0.05em;
  line-height: 1.2;
}

.lead-box--on-media .lead-box__copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.lead-box--on-media .lead-box__copy p {
  margin: 0;
  color: #fff;
  font-size: 16px;
  font-family: var(--font);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.3;
}

.lead-box--on-media .form-notice {
  margin: 0;
}

.lead-box--on-media .lead-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.lead-box--on-media .lead-form input[type="email"] {
  width: 100%;
  flex: none;
  min-height: 64px;
  height: 64px;
  border: 0;
  border-radius: var(--radius);
  background: #fff;
  color: var(--color-text);
  font-size: 24px;
  font-family: var(--font-light);
  font-weight: 300;
  letter-spacing: -0.05em;
  padding: 8px 32px;
  box-sizing: border-box;
}

.lead-box--on-media .lead-form input[type="email"]::placeholder {
  color: #8d8d8d;
}

.lead-box--on-media .lead-form .btn {
  width: auto;
  flex-shrink: 0;
  padding: 16px 48px;
  font-size: 12px;
  font-family: var(--font-bold);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1;
}

@media (max-width: 1100px) {
  .fl-section__inner {
    padding: 48px 48px;
    height: auto;
    gap: 0;
  }

  .fl-section__body {
    height: auto;
    min-height: 0;
  }

  .fl-panel {
    width: 100%;
    max-width: 624px;
  }
}

@media (max-width: 768px) {
  .fl-section__inner {
    padding: 40px 24px;
  }

  .fl-section .faq-item__toggle {
    font-size: 22px;
    padding: 14px 20px;
  }

  .fl-section .faq-item__panel {
    padding: 0 20px 14px 52px;
  }

  .lead-box--on-media h3 {
    font-size: 24px;
  }

  .lead-box--on-media .lead-form input[type="email"] {
    font-size: 18px;
    padding: 8px 20px;
  }

  .lead-box--on-media .lead-form .btn {
    width: 100%;
  }
}

@media (max-width: 1100px) {
  .li-row {
    grid-template-columns: 1fr 1fr;
  }

  .hs-slide {
    min-height: 360px;
  }
}

@media (max-width: 768px) {
  .hs-hero__inner,
  .rs-grid,
  .pt-layout,
  .pt-grid,
  .pc-layout,
  .em-mosaic,
  .em-bottom,
  .li-row {
    grid-template-columns: 1fr;
    aspect-ratio: auto;
  }

  .em-right {
    grid-template-rows: auto;
  }

  .pc-left,
  .pc-right,
  .hs-hero__left,
  .hs-hero__carousel,
  .rs-card,
  .em-left,
  .em-top,
  .hs-slide,
  .pt-side {
    min-height: 420px;
    height: auto;
    aspect-ratio: auto;
  }

	.hs-hero__left-title {
		font-size: 32px;
	}

	.hs-slide__btn {
		left: 24px;
		top: auto;
		bottom: 72px;
		padding: 12px 28px;
	}

	.rs-card__title {
		font-size: 32px;
	}

	.rs-card--lg .rs-card__title {
		font-size: 40px;
	}

	.pc-left__panel h3,
	.pc-right__copy h3 {
		font-size: 32px;
	}

	.pc-right__copy p {
		font-size: 22px;
	}

	.faq-item__toggle {
		font-size: 22px;
	}

	.lead-form {
		flex-direction: column;
	}

	.lead-form .btn {
		width: 100%;
	}

	.product-tabs {
		gap: 24px;
		overflow-x: auto;
	}

	.product-tabs__btn {
		font-size: 16px;
		white-space: nowrap;
	}

	.product-card__overlay-title {
		font-size: 24px;
	}

  .pt-side {
    min-height: 280px;
  }

  .hs-hero__left,
  .hs-hero__carousel {
    min-height: 420px;
  }
}

/* Mobile / tablet: centered column, identical left/right gutters */
@media (max-width: 1100px) {
  :root {
    --page-gutter: 16px;
    --container: 100%;
    --header-container: 100%;
  }

  html,
  body {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }

  .site-header,
  .site-main,
  .site-footer,
  .hs-hero,
  .fl-section {
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
    padding-inline: 0;
  }

  .site-header__inner,
  .hs-hero__inner,
  .rs-section,
  .pt-section,
  .li-section,
  .pc-section,
  .em-section,
  .site-footer__inner,
  .container,
  .page-hero__inner,
  .page-content,
  .content-wrap,
  .archive-grid,
  .pagination,
  .pl-hero__inner,
  .pl-list__inner,
  .empty-state,
  .fl-section__inner {
    width: calc(100% - (var(--page-gutter) * 2));
    max-width: calc(100% - (var(--page-gutter) * 2));
    margin-inline: auto;
    padding-inline: 0;
    box-sizing: border-box;
  }

  .hs-hero__inner,
  .rs-grid,
  .pt-layout,
  .pc-layout,
  .em-mosaic,
  .em-bottom {
    grid-template-columns: 1fr;
    aspect-ratio: auto;
    height: auto;
  }

  .em-right {
    grid-template-rows: auto;
  }

  .fl-section__inner {
    flex-direction: column;
    align-items: stretch;
    padding-block: 40px;
    gap: 32px;
    height: auto;
  }

  .fl-panel {
    width: 100%;
    max-width: 100%;
  }

  .fl-section__body {
    height: auto;
    min-height: 0;
  }

  .pc-certs,
  .product-tabs {
    max-width: 100%;
  }

  .pc-certs__track {
    max-width: none;
  }
}
