﻿* { margin: 0; padding: 0; }

*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --color-bg: #f2efec;
  --color-surface: #ffffff;
  --color-surface-soft: #f6f1e8;
  --color-primary: #ab874d;
  --color-primary-deep: #ab874d;
  --color-text: #244153;
  --color-text-soft: #516473;
  --color-dark: #192e3f;
  --color-dark-soft: #244153;
  --color-border: rgba(25, 56, 78, 0.14);
  --color-overlay: linear-gradient(180deg, rgba(7, 18, 28, 0.15), rgba(7, 18, 28, 0.72));
  --shadow-soft: 0 18px 48px rgba(10, 26, 40, 0.12);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 28px;
  --container: min(100% - 40px, 1500px);
  --section-space: clamp(72px, 8vw, 116px);
  --hero-height: clamp(420px, 54vw, 860px);
  --header-height: 92px;
  --transition: 240ms ease;
  /* Breakpoints: Desktop <=1200px, Tablet <=768px, Mobile <=480px */
  --breakpoint-lg: 1200px;
  --breakpoint-md: 768px;
  --breakpoint-sm: 480px;
  --font-heading: "Adobe Garamond Pro", "EB Garamond", Georgia, serif;
  --font-body: "Outfit", Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  line-height: 1.6;
  font-size: 1rem;
  font-weight: 400;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
  color: inherit;
}

button {
  border: 0;
  background: none;
  cursor: pointer;
}

ul {
  list-style: none;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.uppercase {
  text-transform: uppercase;
}
.section {
  position: relative;
  padding-block: var(--section-space);
}

.section--dark {
  background: var(--color-text);
  color: #fff;
}

.section-heading {
  display: grid;
  gap: 14px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading .eyebrow {
  color: var(--color-primary);display: block;
}

.section-heading h1,
.section-heading h2,
.signature-copy h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5vw, 4rem);
  line-height: 0.96;
}

.signature-copy h2 {
  font-size: clamp(2rem, 5vw, 3rem);
}

.signature-copy .eyebrow {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  line-height: 1.35;
}
.section-heading p:last-child,
.signature-copy p {
  font-size: 1.4rem;
  color: inherit;
  opacity: 0.9;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 42px;
  padding-inline: 24px;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: transform var(--transition), background-color var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
}


.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--solid {
  background: var(--color-primary);
  color: #fff;
  margin-top: 10px;
}

.button--solid:hover,
.button--solid:focus-visible {
  background: var(--color-primary-deep);
  box-shadow: 0 5px 14px rgba(198, 160, 90, 0.28);
}

.button--outline {
  border-color: rgba(198, 160, 90, 0.55);
  color: var(--color-primary);
  background: transparent;
}
.button--out{border:1px solid var(--color-dark);color: var(--color-dark);}
.button--out:hover,
.button--outline:hover,
.button--outline:focus-visible {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.button--small {
  min-height: 42px;
  padding-inline: 20px;
  font-size: 0.94rem;
}

.button--full {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--color-dark);
}

.header__inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-grid;
  justify-items: center;
  gap: 2px;
}

.brand__text {
  font-size: 0.7rem;
  letter-spacing: 0.34em;
  color: #fff;
}

.site-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: right;
}

.site-nav__list {
  display: flex;
  align-items: center;
  justify-content: right;
  gap: clamp(18px, 3vw, 68px);
}

.site-nav__item {
  position: relative;
}

.site-nav__item--has-submenu::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 16px;
}

.site-nav__link {
  display: inline-flex;
  align-items: center;
  position: relative;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
}

.site-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 2px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}

.site-nav__link:hover::after,
.site-nav__link:focus-visible::after,
.site-nav__link.is-active::after {
  transform: scaleX(1);
}

.site-nav__link.is-active {
  color: var(--color-primary);
}

.site-nav__submenu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  min-width: 280px;
  display: grid;
  gap: 2px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(25, 46, 63, 0.96);
  box-shadow: 0 18px 40px rgba(10, 26, 40, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 20;
}

.site-nav__item--has-submenu:hover .site-nav__submenu,
.site-nav__item--has-submenu:focus-within .site-nav__submenu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.site-nav__submenu a {
  display: block;
  padding: 10px 14px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.35;
  text-transform: none;
  transition: background-color var(--transition), color var(--transition);
}

.site-nav__submenu a:hover,
.site-nav__submenu a:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.lang-chip {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  border-radius: 5px;
  color: #fff;
  font-size: 0.75rem;
  padding: 0 4px;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin-block: 5px;
  background: #fff;
  transition: transform var(--transition), opacity var(--transition);
}

.hero {
  position: relative;
  min-height: var(--hero-height);
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video video{width: 100%;}
.hero-video__placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0.45) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  min-height: var(--hero-height);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 80px;
  padding-bottom: 60px;
}

.hero-title {
  font-family: 'EB Garamond', serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  line-height: 1.15;
  color: #fff;
  margin: 0 0 48px;
  letter-spacing: -0.01em;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 44px;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 1.05rem;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 320ms ease, transform 240ms ease, box-shadow 240ms ease;
  box-shadow: 0 8px 24px rgba(201, 168, 106, 0.35);
}

.hero-cta:hover {
  background: #B8955A;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201, 168, 106, 0.45);
}

.hero-cta svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 2;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background-color var(--transition), transform var(--transition), opacity var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.slider-dots button:hover,
.slider-dots button:focus-visible {
  background: rgba(255, 255, 255, 0.7);
  outline: none;
}

.slider-dots button.is-active {
  background: #fff;
  transform: scale(1.08);
}

.section--company {
  padding-top: 0;
  overflow: hidden;
}

.section__bg {
  position: absolute;
  inset: 0 0 auto;
  height: clamp(360px, 42vw, 620px);
  background: var(--color-dark);
}

.section__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section--company .container {
  position: relative;
  z-index: 1;
}

.section--company .section-heading {
  padding-top: 65px;
  color: #fff;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  padding: 20px;
  margin-top: 42px;
  border-radius: var(--radius-md);
  background: rgba(24, 56, 77, 0.46);
}

.metric-card {
  padding: 22px 24px;
  color: #fff;
  gap: 14px;
  display: flex;
  align-items: center;
}
.metric-card__icon{
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--color-surface);
}
.metric-card__icon svg{
  width: 40px;
  height: 40px;
}
.metric-card strong {
  font-size: clamp(1.2rem, 3vw, 2.4rem);
  font-weight: 600;
}

.metric-card span {
  display: block;
  text-transform: uppercase;
}

.company-showcase {
  display: flex;
  gap: 10px;
  margin-top: 48px;
}

.showcase-card {
  position: relative;
  min-height: 420px;
  flex: 0.45;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.showcase-card.is-active {
  flex: 2.52;
}

.showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-overlay);
}

.showcase-card__overlay {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 30px 26px;
  color: #fff;
  display: grid;
  gap: 12px;
}

.showcase-card__overlay h2 {
  font-size: 2rem;
  font-weight: 500;
  line-height: 0.95;
}
.showcase-card:not(.is-active) .showcase-card__overlay svg{color: var(--color-primary);}
.showcase-card:not(.is-active) .showcase-card__overlay h2{font-size: 1.2rem;}
.showcase-card:not(.is-active) .showcase-card__overlay p,
.showcase-card:not(.is-active) .showcase-card__overlay .button {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
}
.showcase-card__overlay .button,
.about-copy .button,
.signature-copy .button{max-width: 160px;}

.about-grid {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: clamp(30px, 4vw, 74px);
  align-items: center;
  padding-top: 44px;
}

.about-mark {
  display: grid;
  gap: 16px;
  justify-items: center;
  align-content: start;
}

.about-mark h2 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  line-height: 0.95;
}

.about-copy {
  display: grid;
  gap: 26px;
  font-size: 1.1rem;
  color: var(--color-text-soft);
}

.brands-head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.85fr);
  gap: 38px;
  align-items: start;
}

.brand-pill-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.brand-pill {
  display: grid;
  gap: 16px;
  padding: 28px 30px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--color-text);
  box-shadow: var(--shadow-soft);
}

.brand-pill strong {
  font-size: clamp(1.8rem, 2.5vw, 2.3rem);
  letter-spacing: 0.01em;
}

.brand-pill span {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--color-border);
}

.brand-pill span::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml;charset=utf-8,<svg style='fill: currentColor;overflow: hidden;' viewBox='0 0 1024 1024' version='1.1' xmlns='http://www.w3.org/2000/svg' width='24' height='24'><path d='M853.333333 507.733333H128v42.666667h733.866667l-145.066667 145.066667 29.866667 29.866666 192-192L746.666667 341.333333l-29.866667 29.866667 136.533333 136.533333z'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  vertical-align: middle;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.product-card {
  padding: 14px 12px 24px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--color-text);
  text-align: center;
}

.product-card img {
  width: 100%;
  height: auto;
  border-radius: 50%;
}

.product-card h3 {
  margin-top: 16px;
  font-size: 1.05rem;
  line-height: 1.35;
}

.product-card p {
  margin-top: 8px;
  font-weight: 300;
  line-height: 1.2;
  color: var(--color-text);
}

.section--signature {
  padding-top: 0;
  padding-bottom: 0;
}

.signature-slider {
  position: relative;
}

.signature-slider__track {
  position: relative;
}

.signature-slide {
  display: none;
}

.signature-slide.is-active {
  display: block;
}

.signature-slider__dots {
  bottom: 34px;
  z-index: 2;
}

.signature-panel {
  position: relative;
  min-height: 640px;
  overflow: hidden;
}

.signature-panel__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.signature-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 18, 28, 0) 55%, rgba(7, 18, 28, 0.55) 100%);
}

.signature-panel__content {
  position: relative;
  z-index: 1;
  min-height: inherit;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 760px);
  align-items: center;
  gap: 40px;
  padding: 84px 0 124px;
  color: #fff;
}

.signature-copy {
  display: grid;
  gap: 18px;
  max-width: 580px;
}
.signature-copy h2{border-bottom: 3px solid var(--color-primary);}
.signature-copy p{font-size: 1.6rem;font-family: var(--font-heading);}
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.benefit-grid li {
  min-height: 170px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 8px;
  text-align: center;
  padding: 22px 16px;
}
.benefit-icon {
  width: 90px;
  height: 90px;
  display: flex;
    align-items: center;
    justify-content: center;
  border-radius: 50px;
  background:var(--color-primary);
}
.benefit-icon svg {
  width: 48px;
  height: 48px;
}
.benefit-grid strong {
  font-size: 2.4rem;
  font-family: var(--font-heading);
}

.benefit-grid span {
  text-transform: uppercase;
  font-weight: 300;
}

.category-layout {
  display: grid;
  grid-template-columns: 325px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.category-tabs {
  display: grid;
  gap: 24px;padding-top: 42px;
}

.category-tab {
  width: 100%;
  padding: 22px 24px;
  min-height: 96px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--color-text);
  text-align: left;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.2;
  z-index: 1;
  font-family: var(--font-heading);
  text-transform: uppercase;
}

.category-tab.is-active,
.category-tab:hover,
.category-tab:focus-visible {
  background: var(--color-primary);
  color: #fff;
}

.category-showcase {
  min-width: 0;
}

.category-panel {
  height: 100%;
}

.category-panel__frame {
  position: relative;
  height: 100%;
}

.category-product-grid {
  --category-bg: url("../images/bg-pro.png");
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 245px;
  gap: 18px;
  align-items: stretch;
  isolation: isolate;
}

.category-product-grid::before {
  content: "";
  position: absolute;
  top: 0px;
  right: 280px;
  bottom: -28px;
  left: -188px;
  z-index: 0;
  border-radius: 18px;
  background: var(--category-bg, url("../images/bg-pro.png")) no-repeat center center;
  background-size: cover;
  pointer-events: none;
}

.category-product-grid > * {
  position: relative;
  z-index: 1;
}

.category-product-list {
  display: grid;
  gap: 18px;
  justify-items: end;
}

.category-product {
  display: grid;
  gap: 14px;
}

.category-product__link {
  display: grid;
  gap: 14px;
  color: inherit;
  text-decoration: none;
}

.category-product__link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 6px;
  border-radius: 12px;
}

.category-product img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.category-product h3 {
  color: #fff;
  text-align: center;
  font-size: 1.10rem;
  line-height: 1.2;
  font-family: var(--font-heading);
}

.category-product-list .category-product img {
  transition: box-shadow var(--transition);
}

.category-product-list .category-product.is-active img {
  box-shadow: 0 0 0 1px var(--color-primary);
}

.category-product--featured {
  padding: 42px 52px 0 32px;
}


.category-product--featured h3 {
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
}

.section--quality {
  background: var(--color-bg);
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin: 42px auto 0;
  max-width: 1300px;
}

.cert-card {
  display: grid;
  place-items: center;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 40px;
  align-items: start;
  margin-top: 34px;
}

.process-card {
  position: relative;
  padding: 20px;
  text-align: center;
}

.process-card:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 120px;
  left: -18px;
  width: 55px;
  height: 26px;
  background: url("../images/next-arrow.png") no-repeat center center;
  background-size: contain;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 2;
}

.process-card img {
  width: 100%;
  border-radius: var(--radius-md);
}

.process-card h3 {
  margin-top: 12px;
  font-size: 0.875rem;
  font-weight: 500;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.blog-card {
  overflow: hidden;
  padding: 15px;
  border-radius: var(--radius-md);
  background: var(--color-surface);
}

.blog-card img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.blog-card__body {
  display: grid;
  gap: 14px;
  padding: 10px;
  color: var(--color-text);
}

.blog-card time {
  font-size: 0.86rem;
  color: var(--color-primary);
}

.blog-card h3 {
  font-size: 1.1rem;
  line-height: 1.35;
}

.blog-card p {
  color: var(--color-text-soft);
  max-height: 52px;
  overflow: hidden;

}

.button--blog {
  margin-top: 6px;
}

.blog-card:hover .button--blog,
.blog-card:focus-within .button--blog {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

.site-footer {
  background: var(--color-dark);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr 1.9fr;
  gap: 44px;
  padding-block: 62px;
}

.site-footer h2 {
  margin-bottom: 22px;
  font-size: 2rem;
  font-family: var(--font-heading);
  text-transform: uppercase;
}

.footer-links,
.contact-list {
  display: grid;
  gap: 12px;
}

.footer-links a,
.contact-list a,
.footer-bar a {
  transition: color var(--transition);
}

.footer-links a:hover,
.footer-links a:focus-visible,
.contact-list a:hover,
.contact-list a:focus-visible,
.contact-list a.secondary,
.footer-bar a:hover,
.footer-bar a:focus-visible {
  color: var(--color-primary);
}

.message-form {
  display: grid;
  gap: 14px;
}

.message-form__row p {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.message-form input,
.message-form textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(6, 19, 32, 0.92);
  color: #fff;
}

.message-form textarea {
  height: 150px;
  resize: vertical;
}

.message-form input::placeholder,
.message-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.message-form input:focus-visible,
.message-form textarea:focus-visible {
  outline: 2px solid rgba(198, 160, 90, 0.8);
  outline-offset: 1px;
}

.footer-bar {
  background: #0b1c29;
}

.footer-bar__inner {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.section--soft {
  background: #f6f7f9;
}
.areatextClass::-webkit-input-placeholder { color: red!important;}
.aligncenter {
    display: block !important;
    margin: 0 auto!important;
}
.wpcf7 fieldset{display:none;}
.wpcf7-response-output,.wpcf7-validation-errors {display: none !important;}
span.wpcf7-not-valid-tip {display: none;}
.screen-reader-response {display: none !important;}
.page-hero {
  position: relative;
  min-height: clamp(260px, 33vw, 420px);
  background: var(--color-dark);
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__overlay {
  position: relative;
  z-index: 1;
  min-height: inherit;
  display: grid;
  align-items: center;
}

.page-hero__content {
  display: grid;
  justify-items: center;
  text-align: center;
}

.page-hero h1 {
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 7vw, 5rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.about-anchor-bar {
  position: relative;
  border-bottom: 1px solid rgba(36, 65, 83, 0.08);
}

.about-anchor-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px 24px;
  padding: 20px 0;
  
}

.anchor-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.anchor-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 12px 36px;
  border: 1px solid var(--color-dark);
  border-radius: 4px;
  font-size: 1.1rem;
  color: var(--color-text);
  transition: border-color var(--transition), background-color var(--transition), color var(--transition), transform var(--transition);
}

.anchor-pill:hover,
.anchor-pill:focus-visible,
.anchor-pill.is-active {
  background: var(--color-dark);
  color: #fff;
  border-color: var(--color-dark);
  transform: translateY(-1px);
}

.anchor-pill__icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.anchor-pill__icon svg {
  width: 24px;
  height: 24px;
}

.about-breadcrumb {
  color: var(--color-text);
  font-size: 1.2rem;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.about-block,
.product-detail-block,
.oem-intro, 
.oem-workflow,.news-archive{
  padding-top: clamp(56px, 7vw, 60px);
  padding-bottom: clamp(56px, 7vw, 60px);
}

.about-stack {
  display: grid;
  gap: clamp(34px, 5vw, 52px);
}

.section-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  width: fit-content;
  padding: 6px 20px;
  border: 1px solid var(--color-primary);
  border-radius: 4px;
  color: var(--color-primary);
  font-weight: 300;
  text-transform: uppercase;
}

.stacked-heading {
  display: grid;
  gap: 14px;
}

.stacked-heading--center {
  justify-items: center;
  text-align: center;
}

.stacked-heading h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.8vw, 3.5rem);
  line-height: 0.96;
}

.stacked-heading p {
  color: var(--color-text-soft);
  font-size: 1.1rem;
  line-height: 1.6;
  font-weight: 300;
}

.profile-intro,
.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 1.1fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
  position: relative;
}
.split-feature__media{position: relative;}
.profile-intro__media img,
.split-feature__media img,
.media-card img,
.mosaic-grid img {
  width: 100%;
  border-radius: var(--radius-md);
}

.brand-story-intro {
  color: var(--color-text);
  font-size: 1.2rem;
  font-weight: 500;
}

.brand-story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.brand-story {
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 470px;
  padding: 44px 34px 36px;
  border-radius: var(--radius-md);
  background: #eaeff3;
  text-align: center;
}

.brand-story__badge {
  display: grid;
  place-items: center;
  width: 150px;
  aspect-ratio: 1;
  margin-bottom: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
}

.brand-story__badge img {
  width: 70px;
  height: auto;
}

.brand-story h3,
.cta-panel h3 {
  font-family: var(--font-heading);
}

.brand-story h3,
.series-card h3 {
  font-size: clamp(1.95rem, 2.4vw, 2rem);
  line-height: 1;
}

.brand-story h3 {
  margin-bottom: 14px;
}

.brand-story__divider {
  display: block;
  width: 68px;
  height: 3px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: var(--color-primary);
}

.brand-story p,
.process-step p,
.media-card span {
  color: var(--color-text-soft);
  font-size: 0.94rem;white-space: nowrap;
}

.brand-story p {
  max-width: 34ch;
  margin-inline: auto;
  color: var(--color-text);
  font-weight: 300;
  line-height: 1.75;
  text-wrap: pretty;
}

.brand-story:hover,
.series-card {
  background: var(--color-text);
  color: #fff;
}

.brand-story:hover .brand-story__badge {
  background: rgba(255, 255, 255, 0.94);
}

.brand-story:hover p,
.series-card p,
.series-card span {
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.82);
}

.split-feature__content {
  display: grid;
  gap: 18px;
}

.split-feature__content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 0.96;
}

.split-feature__content p {
  color: var(--color-text-soft);
}

.accent-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  text-align: center;
  margin-top: 8px;
}

.accent-cards--wide {
  max-width: 980px;
}

.accent-cards--origin {
  max-width: none;
  margin-top: 0;
}

.accent-card {
  display: grid;
  gap: 8px;
  min-height: 116px;
  padding: 20px 18px;
  border-radius: var(--radius-md);
  background: var(--color-dark);
  color: #fff;
  justify-items: center;
  align-content: start;
  text-transform: uppercase;
}

.accent-cards--origin .accent-card {
  min-height: 124px;
  padding: 24px 20px 22px;
  border-radius: 8px;
}

.accent-card strong {
  font-size: 0.92rem;
  font-weight: 300;
  letter-spacing: 0.08em;
}

.accent-cards--origin .accent-card strong {
  font-size: 0.88rem;
}

.accent-card span {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.82);
}

.accent-cards--origin .accent-card .brand-story__divider {
  width: 54px;
  margin-bottom: 2px;
}

.accent-cards--origin .accent-card span:last-child {
  font-size: clamp(1.25rem, 1.9vw, 1.5rem);
  line-height: 1.15;
}

.origin-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.12fr);
  gap: clamp(30px, 4vw, 56px);
  align-items: start;
}
.split-feature_cards,.export_cards{grid-template-columns: repeat(3, minmax(0, 1fr));}
.split-feature_cards svg{width: 40px;height: 40px;}
.split-feature_cards strong{font-size: 1.2rem;font-weight: 300;font-family: var(--font-heading);text-transform: none;}
.split-feature_cards span{font-size: 1rem;font-family: var(--font-body);text-transform: none;line-height: 1.3;font-weight: 300;}
.origin-grid__content {
  display: grid;
  gap: clamp(24px, 3vw, 34px);
  align-content: start;
}

.process-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.process-strip--nine {
  grid-template-columns: repeat(9, minmax(0, 1fr));
}

.process-step {
  position: relative;
  display: grid;
  gap: 8px;
  justify-items: center;
  text-align: center;
}

.process-strip--paired {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-top: 6px;
}

.process-strip--staggered {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
}

.process-strip--paired .process-step {
  gap: 10px;
  align-content: start;
}

.process-strip--staggered .process-step {
  gap: 10px;
  align-content: start;
  text-transform: uppercase;
}

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 23px;
  left: calc(100% - 6px);
  width: calc(100% - 12px);
  height: 2px;
  background: linear-gradient(90deg, rgba(171, 135, 77, 0.34), rgba(171, 135, 77, 0.04));
}

.process-strip--arrow .process-step:not(:last-child)::after {
  content: none;
}

.process-strip__arrow {
  align-self: start;
  justify-self: center;
  width: clamp(58px, 6vw, 88px);
  height: 34px;
  margin-top: 44px;
  background: url("../images/next-arrow.png") no-repeat center center;
  background-size: contain;
}

.process-strip--paired.process-strip--arrow .process-step:nth-child(odd)::after {
  content: "";
  position: absolute;
  top: 36px;
  left: calc(100% + clamp(14px, 2vw, 26px));
  width: clamp(56px, 7vw, 72px);
  height: 26px;
  background: url("../images/next-arrow.png") no-repeat center center;
  background-size: contain;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
}

.process-step span {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border: 1px solid var(--color-dark);
  border-radius: 50%;
  color: var(--color-text);
  font-size: 1.4rem;
  font-weight: 600;
}

.process-strip--paired .process-step span,
.process-strip--staggered .process-step span {
  width: 72px;
  height: 72px;
  border-color: rgba(36, 65, 83, 0.42);
  background: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
}

.process-strip--staggered .process-step h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.12;
}

.process-strip--paired .process-step h3 {
  font-family: var(--font-body);
  font-size: clamp(1.2rem, 1.7vw, 1.5rem);
  font-weight: 500;
  line-height: 1.12;
}

.process-strip--paired .process-step p,
.process-strip--staggered .process-step p {
  color: var(--color-text-soft);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.35;
}

.mosaic-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  gap: 14px;
}

.mosaic-grid--origin {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.mosaic-grid--export {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.mosaic-grid__lead {
  grid-row: span 2;
  height: 100%;
  min-height: 320px;
  position: relative;
}

.mosaic-grid--origin .mosaic-grid__lead {
  grid-column: 1 / -1;
  grid-row: auto;
  min-height: 390px;
  position: relative;

}

.mosaic-grid--export .mosaic-grid__lead {
  grid-column: 1 / -1;
  grid-row: auto;
  min-height: 340px;
}

.mosaic-grid--origin .tagged-media:not(.mosaic-grid__lead) {
  min-height: 240px;
  position: relative; 
}

.mosaic-grid--export .tagged-media:not(.mosaic-grid__lead) {
  min-height: 165px;
  position: relative;
}

.tagged-media {
  position: relative;
  display: block;
  height: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  isolation: isolate;
}

.tagged-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tagged-media__label {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  max-width: calc(100% - 32px);
  min-height: 40px;
  padding: 6px 14px;
  border-radius: 8px;
  background: rgb(25 46 63 / 78%);
  color: var(--color-primary);
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1;
  text-transform: uppercase;
}

.media-card-grid {
  display: grid;
  gap: 18px;
}

.media-card-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.media-card-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.media-card {
  display: grid;
  gap: 10px;
  position: relative;
}

.media-card span {
  font-size: 0.88rem;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.series-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.series-card {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 14px 14px 20px;
  border-radius: 14px;
  justify-items: center;
  text-align: center;
}
.series-card h3 {
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 500;
}
.series-card img {
  border-radius: 50%;
  object-fit: cover;
  
}
.series-card span {
  font-size: 0.875rem;
  color: var(--color-primary);
  background: #365256;
  padding: 4px 12px;
  border-radius: 4px;
  margin: 0 4px;
  display: inline-block;
}
.cert-grid--about {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 10px;
  max-width: none;
}

.about-cta {
  padding-top: clamp(44px, 6vw, 72px);
}

.cta-panel {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin: 34px auto 0;
  padding: clamp(28px, 4vw, 62px);
  border: 1px solid var(--color-dark);
  border-radius: 14px;
  text-align: center;
  background: #f6f7f9;
}

.cta-panel h3 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--color-text);
}

.cta-panel p {
  color: var(--color-text-soft);
}
.cta-panel .button {
  width: 360px;
  font-size: 1.1rem;
  text-transform: uppercase;
  padding: 14px 0;
}

.floating-contact {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 40;
}

.floating-contact ul {
  display: grid;
  gap: 14px;
  margin: 0;
  list-style: none;
}

.floating-contact li {
  position: relative;
}

.floating-contact a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 58px;
  text-decoration: none;
}

.floating-contact__info {
  position: absolute;
  top: 50%;
  right: calc(100% - 10px);
  z-index: 0;
  display: grid;
  gap: 4px;
  min-width: max-content;
  padding: 12px 20px 12px 18px;
  border: 1px solid rgba(36, 65, 83, 0.12);
  border-radius: 999px 0 0 999px;
  background: #fff;
  box-shadow: 0 14px 28px rgba(11, 28, 41, 0.12);
  color: var(--color-text);
  opacity: 0;
  transform: translate(18px, -50%);
  transform-origin: right center;
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.floating-contact__info strong,
.floating-contact__info span {
  white-space: nowrap;
}

.floating-contact__info strong {
  color: var(--color-text-soft);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.floating-contact__info span {
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.2;
}

.floating-contact__icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: #fff;
  background: var(--floating-contact-bg, var(--color-primary));
  box-shadow: 0 14px 26px rgba(11, 28, 41, 0.16);
  transition: transform 0.28s ease, filter 0.28s ease;
}

.floating-contact__icon svg {
  display: block;
}

.floating-contact__item--sales {
  --floating-contact-bg: linear-gradient(180deg, #ff7c88 0%, #f06372 100%);
}

.floating-contact__item--whatsapp {
  --floating-contact-bg: linear-gradient(180deg, #51d8bb 0%, #2fc0a7 100%);
}

.floating-contact__item--phone {
  --floating-contact-bg: linear-gradient(180deg, #72d54e 0%, #58c03d 100%);
}

.floating-contact__item--mail {
  --floating-contact-bg: linear-gradient(180deg, #5b83f0 0%, #3f67dd 100%);
}

.floating-contact li:hover .floating-contact__info,
.floating-contact li:focus-within .floating-contact__info {
  opacity: 1;
  transform: translate(0, -50%);
}

.floating-contact li:hover .floating-contact__icon,
.floating-contact li:focus-within .floating-contact__icon {
  transform: translateX(-6px);
  filter: brightness(1.04);
}

.mobile-dock {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 45;
  display: none;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(15, 29, 39, 0.96);
  box-shadow: 0 -12px 28px rgba(11, 28, 41, 0.18);
  backdrop-filter: blur(12px);
}

.mobile-dock a {
  display: grid;
  justify-items: center;
  gap: 4px;
  padding: 10px 8px calc(12px + env(safe-area-inset-bottom, 0px));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.mobile-dock a span:first-child {
  display: grid;
  place-items: center;
}

.mobile-dock svg {
  display: block;
  width: 20px;
  height: 20px;
}

.mobile-dock a:hover,
.mobile-dock a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}
.factory-block {
  display: grid;
  gap: 36px;
}

.factory-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.factory-card {
  height: 100%;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--color-surface);
  box-shadow: 0 10px 28px rgba(19, 40, 57, 0.08);
}

.factory-card img {
  display: block;
  width: 100%;
}

.factory-card h3 {
  padding: 22px 24px 24px;
  color: var(--color-text);
  font-size: 1.2rem;
}
.video-item {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  appearance: none;
  background: transparent;
  box-shadow: none;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: transform var(--transition);
}

.video-item:hover {
  transform: translateY(-4px);
}

.video-item:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 4px;
}

.video-item img {
  border-radius: var(--radius-md);
}

.video-item__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 16px;
}

.video-item__title {
  flex: 1;
  color: var(--color-text);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.25;
}

.video-item__play {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ef3b2d;
}

.video-item__play svg {
  display: block;
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.video-modal[hidden] {
  display: none;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 28px;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(7, 18, 28, 0.78);
}

.video-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 960px);
}

.video-modal__frame {
  overflow: hidden;
  border-radius: 20px;
  background: #000;
  box-shadow: 0 24px 60px rgba(7, 18, 28, 0.35);
  aspect-ratio: 16 / 9;
}

.video-modal__frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-modal__close {
  position: absolute;
  top: -18px;
  right: -18px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--color-text);
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(7, 18, 28, 0.2);
  transition: transform var(--transition), color var(--transition);
}

.video-modal__close:hover,
.video-modal__close:focus-visible {
  transform: scale(1.04);
  color: var(--color-primary);
}

.video-modal__close:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

.video-modal__close svg {
  display: block;
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.video-modal-open {
  overflow: hidden;
}
.factory-pagination {
  margin-top: 36px;
}
.factory-pagination ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.factory-pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  min-height: 28px;
  color: var(--color-text);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  transition: color var(--transition);
}

.factory-pagination a:hover,
.factory-pagination a:focus-visible,
.factory-pagination a.is-active {
  color: var(--color-primary);
}

.factory-pagination a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

.products-section {
  padding-top: clamp(56px, 7vw, 60px);
  padding-bottom: clamp(56px, 7vw, 60px);
}

.products-layout {
  display: grid;
  grid-template-columns: 350px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.products-sidebar {
  display: grid;
  gap: 24px;
}

.products-panel {
  padding: 26px 20px;
  border-radius: 8px;
  box-shadow: 2px 8px 15px rgba(12, 27, 39, 0.05);
}

.products-panel h2 {
  margin-bottom: 18px;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  line-height: 1;
}

.products-category-nav {
  display: grid;
  gap: 8px;
}

.products-category-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 1.1rem;
  padding: 20px 14px;
  border-radius: 4px;
  background: #eef2f4;
  color: var(--color-text);
  line-height: 1.35;
  transition: background-color var(--transition), color var(--transition), transform var(--transition);
}

.products-category-nav a:hover,
.products-category-nav a:focus-visible,
.products-category-nav a.is-active {
  background: var(--color-dark);
  color: #fff;
  transform: translateX(2px);
}

.products-category-nav span {
  font-weight: 600;
}

.products-contact-list {
  display: grid;
  gap: 16px;
}

.products-contact-list li {
  display: grid;
  gap: 4px;
  color: var(--color-text-soft);
  line-height: 1.55;
  font-size: 1.1rem;
  font-weight: 300;
}

.products-contact-list strong {
  color: var(--color-text);
  font-weight: 600;
}


.product-list-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px 20px;
}

.product-list-card {
  display: grid;
  gap: 24px;
  align-content: start;
}

.product-list-card__media {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-md);
}


.product-list-card__body {
  display: grid;
  gap: 12px;
}

.product-list-card__body h2 {
  font-size: 1.1rem;
  line-height: 1.35;
  font-family: var(--font-heading);
}

.product-list-card__body p {
  color: var(--color-text);
  height: 46px;
  overflow: hidden;
  font-weight: 300;
  line-height: 1.45;
}

.product-list-card .button {max-width: 160px;height: 34px;min-height: 34px;}

.product-list-card .button:hover,
.product-list-card .button:focus-visible {
  color: #fff;
}

.product-pagination {
  margin-top: 36px;
}

.product-pagination ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}


.product-detail-hero {
  padding-top: clamp(34px, 5vw, 54px);
}

.product-detail-shell {
  display: grid;
  gap: clamp(36px, 5vw, 54px);
}

.product-detail-intro,
.detail-split,
.detail-formula {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(26px, 4vw, 44px);
  align-items: center;
}
.product-detail-intro{grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.3fr);}
.product-detail-copy,
.detail-copy-panel,
.detail-formula__content {
  display: grid;
  gap: 18px;
}

.product-detail-copy h1,
.detail-copy-panel h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  line-height: 0.95;
  color: var(--color-text);
}



.product-detail-copy p,
.detail-copy-panel p {
  /* max-width: 58ch; */
  color: var(--color-text-soft);
  font-size: 1.1rem;
}

.detail-kpi-grid,
.detail-stat-strip,
.detail-brand-tabs {
  display: grid;
  gap: 12px;
}

.detail-kpi-grid,
.detail-stat-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.detail-kpi {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 6px;
  min-height: 120px;
  padding: 16px 0;
  border-radius: 8px;
  background: var(--color-dark-soft);
  color: #fff;
  text-align: center;
}

.detail-kpi strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  line-height: 1;
}
.detail-kpi h3 {
  display: block;
  font-family: var(--font-heading);
  color:var(--color-primary);
  font-size: 3rem;
  line-height: 1;
}
.detail-kpi h4 {
  display: block;
  font-family: var(--font-heading);
  color:var(--color-primary);
  font-size: 2.1rem;
  line-height: 1;
  text-transform: none;
}
.detail-kpi span {
  display: block;
  font-weight: 500;
  line-height: 1.35;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.product-detail-actions {
  display: grid;
  flex-wrap: wrap;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-top: 4px;
}

.product-detail-gallery {
  --gallery-panel-rest: 1;
  --gallery-panel-active: 4.8;
  display: flex;
  gap: 14px;
  align-items: stretch;
  min-height: clamp(420px, 37vw, 565px);
}

.product-detail-gallery__panel,
.detail-visual,
.detail-media-card,
.detail-feature-card,
.detail-card {
  overflow: hidden;
  border-radius: 10px;
}

.product-detail-gallery__panel,
.detail-visual,
.detail-media-card,
.detail-feature-card {
  background: rgba(255, 255, 255, 0.94);
}

.product-detail-gallery__panel img,
.detail-visual img,
.detail-feature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-gallery__panel {
  position: relative;
  flex: var(--gallery-panel-rest) 1 0;
  min-width: 0;
  min-height: 100%;
  cursor: pointer;
  box-shadow: 0 24px 54px rgba(15, 36, 76, 0.12);
  transition:
    flex-grow 0.46s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.35s ease,
    box-shadow 0.35s ease,
    filter 0.35s ease;
}

.product-detail-gallery__panel--default {
  flex-grow: var(--gallery-panel-active);
}

.product-detail-gallery__panel img {
  aspect-ratio: auto;
  transition: transform 0.46s ease;
}

.product-detail-gallery__panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 16, 33, 0.08) 0%, rgba(8, 16, 33, 0.22) 100%);
  opacity: 0.78;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.product-detail-gallery:hover .product-detail-gallery__panel:not(:hover),
.product-detail-gallery:focus-within .product-detail-gallery__panel:not(:focus-visible):not(:focus-within) {
  flex-grow: var(--gallery-panel-rest);
}

.product-detail-gallery:hover .product-detail-gallery__panel--default:not(:hover),
.product-detail-gallery:focus-within .product-detail-gallery__panel--default:not(:focus-visible):not(:focus-within) {
  box-shadow: 0 18px 42px rgba(15, 36, 76, 0.1);
}

.product-detail-gallery__panel:hover,
.product-detail-gallery__panel:focus-visible,
.product-detail-gallery__panel:focus-within {
  flex-grow: var(--gallery-panel-active);
  transform: translateY(-2px);
  box-shadow: 0 26px 54px rgba(15, 36, 76, 0.18);
  filter: saturate(1.04);
  outline: none;
}

.product-detail-gallery:hover .product-detail-gallery__panel:not(:hover)::after,
.product-detail-gallery:focus-within .product-detail-gallery__panel:not(:focus-visible):not(:focus-within)::after {
  opacity: 0.82;
}

.product-detail-gallery__panel:hover::after,
.product-detail-gallery__panel:focus-visible::after,
.product-detail-gallery__panel:focus-within::after {
  opacity: 0.2;
}

.product-detail-gallery__panel:hover img,
.product-detail-gallery__panel:focus-visible img,
.product-detail-gallery__panel:focus-within img {
  transform: scale(1.05);
}

.detail-bullet-list {
  display: grid;
  gap: 20px;
}

.detail-bullet-list li {
  position: relative;
  padding-left: 18px;
  color: var(--color-text-soft);
}

.detail-bullet-list li::before,.detail-list li::before,.detail-chip::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-primary);
}

.detail-bullet-list strong {
  color: var(--color-text);display: block;
}

.detail-visual--large {
  box-shadow: 0 16px 36px rgba(12, 27, 39, 0.08);
}


.detail-formula {
  align-items: start;
}

.detail-formula__media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.detail-media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-media-card--lead {
  grid-column: 1 / -1;
}


.process-strip--sequence {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  align-items: start;
}

.detail-list {
  display: grid;
  gap: 10px;
}

.detail-list li {
  padding: 18px 18px 18px 40px;
  border-radius: 8px;
  background: var(--color-dark);
  color: #fff;
  position: relative;
}
.detail-list li::before {top: 29px; left: 20px;}
.detail-list strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-primary);
}

.detail-list span {
  display: block;
  margin-top: 4px;
  line-height: 1.45;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.78);
}

.detail-chip-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.detail-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 8px 36px;
  border-radius: 8px;
  background: #eaeff3;
  color: var(--color-text);
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  position: relative;
}
.detail-chip::before {
  top: 20px;
  left:20px;
}

.detail-performance-banner {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.detail-performance-banner::after,
.detail-feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(13, 28, 41, 0.1) 0%, rgba(13, 28, 41, 0.72) 100%);
}

.detail-performance-banner__stats {
  position: absolute;
  inset: auto 0 20px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  padding: 0 24px;
}

.banner-stat {
  display: grid;
  gap: 4px;
  justify-items: center;
  color: #fff;
  text-align: center;
}

.banner-stat strong {
  font-family: var(--font-heading);
  font-size: 3rem;
  line-height: 1;
}

.banner-stat span {
  line-height: 1.35;
  text-transform: uppercase;
}

.detail-card-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.detail-card {
  background: var(--color-dark-soft);
  color: #fff;
  padding: 15px;
  text-align: center;
}


.detail-card__body {
  display: grid;
  gap: 6px;
  padding: 14px 16px 18px;
  justify-items: center;
  align-content: center;
}

.detail-card__body h3,
.detail-feature-card__body h3,
.detail-chain-item h3 {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.3;
}

.detail-card__body p {
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.8);
}
.detail-stat-strip {
  width: 70%;
  margin: 0 auto;
}
.detail-card__index {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--color-primary);
}

.detail-note {
  text-align: center;
  color: var(--color-text);
  font-size:1.1rem;
  line-height: 1.5;
  text-transform: uppercase;
}

.detail-note--body {
  margin-inline: auto;
  text-transform: none;
  letter-spacing: 0;
  color: var(--color-primary);
}

.detail-tech-grid,
.detail-particle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.detail-feature-card {
  position: relative;
  aspect-ratio: 4 / 3;
}
.detail-feature-card__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: grid;
  gap: 10px;
  justify-items: start;
  text-align: left;
  color: #fff;
  padding: 22px 24px 26px;
}

.detail-feature-card__body p {
  line-height: 1.5;
  color: rgba(255,255,255,0.9);
  max-width: 90%;
}

.detail-chain-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: start;
}

.detail-chain-item {
  display: grid;
  gap: 12px;
  justify-items: center;
  text-align: center;
}
.detail-chain-item img {
  border-radius: 8px;
}
.detail-chain-arrow {
  width: 48px;
  height: 24px;
  align-self: center;
  justify-self: center;
  margin-top: 34px;
  background: url("../images/next-arrow.png") no-repeat center center;
  background-size: contain;
  opacity: 0.78;
}

.detail-brand-tabs {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.detail-brand-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.cta-panel--detail {width: 100%;}



.oem-heading-block h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 4.2vw, 3.5rem);
  line-height: 1;
  color: var(--color-text);
}

.oem-heading-block p,
.oem-copy {
  color: var(--color-text-soft);
}

.oem-section-heading {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px 12px;
}

.oem-section-heading span {
  color: var(--color-primary);
}

.oem-section-heading h2,
.oem-section-heading h3 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.05;
  color: var(--color-text);
}

.oem-section-heading h3 {
  font-size: clamp(1.8rem, 2.6vw, 2.45rem);
}

.oem-value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.oem-value-card {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 18px;
  min-height: 250px;
  padding: 30px 24px;
  border-radius: 8px;
  background: #eaeff3;
  text-align: center;
  cursor: pointer;
}

.oem-value-card.is-active,
.oem-value-card:hover {
  background: var(--color-dark-soft);
  color: #fff;
}

.oem-value-card__icon {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #ffffff;
  color: var(--color-dark-soft);
}
.oem-value-card__icon svg {
  width: 56px;
  height: 56px;
}
.oem-value-card h4 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  line-height: 1.15;
}

.oem-value-card p,
.oem-option-card p,
.process-strip--oem .process-step p {
  color: var(--color-text-soft);
  line-height: 1.6;
}

.oem-value-card.is-active p,
.oem-value-card:hover p,
.oem-option-card.is-active p,
.oem-option-card:hover p {
  color: rgba(255, 255, 255, 0.82);
}

.oem-value-card.is-active .oem-value-card__icon,
.oem-value-card:hover .oem-value-card__icon {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.oem-scope-stack {
  gap: 22px;
}

.oem-scope-block {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.88fr);
  gap: 30px;
  align-items: stretch;
  margin-bottom: 40px;
}

.oem-scope-block--reverse {
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 0.95fr);
}

.oem-scope-block__copy h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  line-height: 1.08;
  color: var(--color-text);
  margin-bottom: 30px;
}

.oem-scope-block__media,
.oem-option-card {
  border-radius: 8px;
  overflow: hidden;
}

.oem-scope-block__media {
  min-height: 100%;
  background: #dfe6eb;
}

.oem-scope-block__media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.oem-option-list {
  display: grid;
  gap: 20px;
}

.oem-option-card {
  padding: 36px 24px;
  border: 1px solid var(--color-dark);
  background: #eaeff3;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.oem-option-card.is-active,
.oem-option-card:hover {
  background: var(--color-dark-soft);
  border-color: transparent;
  color: #fff;
}

.oem-option-card h4 {
  font-family: var(--font-heading);
  font-size: 1.16rem;
  line-height: 1.15;
  margin-bottom: 8px;
}

.process-strip--oem {
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
  gap: 12px;
  align-items: start;
}

.process-strip--oem .process-step {
  gap: 14px;
  align-content: start;
}

.process-strip--oem .process-step span {
  width: 66px;
  height: 66px;
}

.process-strip--oem .process-step h3 {
  font-size: 1rem;
  line-height: 1.35;
  color: var(--color-text);
}

.process-strip--oem .process-step p {
  white-space: pre-line;
}


.news-layout {
  display: grid;
  grid-template-columns: 350px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.news-sidebar {
  display: grid;
  gap: 20px;
}

.news-panel{
  padding: 26px 20px;
  border-radius: 8px;
  background: var(--color-surface);
  box-shadow: 2px 8px 15px rgba(12, 27, 39, 0.05);
}

.news-panel h2 {
  margin-bottom: 18px;
  font-family: var(--font-heading);
  font-size: 2rem;
  line-height: 1;
}

.news-category-list,
.recent-post-list {
  display: grid;
  gap: 10px;
}

.news-category-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 50px;
  padding: 14px 16px;
  border-radius: 4px;
  background: #eef2f4;
  color: var(--color-text);
  font-size: 0.98rem;
  line-height: 1.35;
  transition: background-color var(--transition), color var(--transition), transform var(--transition);
}

.news-category-list a:hover,
.news-category-list a:focus-visible,
.news-category-list a.is-active {
  background: var(--color-dark);
  color: #fff;
  transform: translateX(2px);
}

.news-category-list span,
.news-card__link svg {
  flex-shrink: 0;
}

.recent-post-list a {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 6px 0;
}

.recent-post-list img {
  width: 76px;
  height: 58px;
  object-fit: cover;
  border-radius: 4px;
}

.recent-post-list span {
  display: grid;
  gap: 4px;
}

.recent-post-list strong {
  font-size: 0.92rem;
  line-height: 1.35;
  font-weight: 500;
  color: var(--color-text);
}

.recent-post-list small {
  color: var(--color-text-soft);
  font-size: 0.82rem;
}

.recent-post-list a:hover strong,
.recent-post-list a:focus-visible strong,
.recent-post-list a:hover small,
.recent-post-list a:focus-visible small {
  color: var(--color-primary);
}

.news-content {
  display: grid;
  gap: 34px;
}

.news-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px 20px;
}

.news-card-grid > li {
  scroll-margin-top: calc(var(--header-height) + 32px);

}

.news-card {
  overflow: hidden;
  height: 100%;
  padding: 12px;
  background: #f6f7f9;
  border-radius: 10px;
}

.news-card__media {
  display: block;
}

.news-card__media img {
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.news-card__body {
  display: grid;
  gap: 16px;
  padding: 14px 6px 8px;
}

.news-card__body time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  color: #9b8a63;
}

.news-card__body h2 {
  font-size: 1rem;
  line-height: 1.35;
  font-weight: 500;
  color: var(--color-text);
}

.news-card__body p {
  max-height: 46px;
  color: var(--color-text-soft);
  line-height: 1.55;
  overflow: hidden;
}

.news-card__link {
  width: 100%;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-inline: 16px;
  font-size: 0.92rem;
}

.news-card:hover .news-card__link,
.news-card:focus-within .news-card__link {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

.news-detail{
  padding:0 10px;
  line-height: 1.55;
}
.news-detail h2{
  font-size: 1.2rem;
  line-height: 1;
  text-align: center;
  color: var(--color-text);
  margin-bottom: 28px;
}
.news-detail p{
  margin-bottom: 10px;
  font-weight: 300;
}
.page-hero--contact .page-hero__bg {
  object-position: center 38%;
}

.page-hero--contact .page-hero__overlay {
  background: linear-gradient(180deg, rgba(19, 37, 52, 0.12), rgba(19, 37, 52, 0.34));
}

.page-hero--contact .page-hero__content {
  align-items: center;
}

.contact-page {
  padding-top: clamp(52px, 7vw, 60px);
  padding-bottom: clamp(64px, 8vw, 86px);
}

.contact-page__inner {
  display: grid;
  gap: 54px;
}

.contact-block {
  display: grid;
  gap: 28px;
}

.contact-section-heading {
  text-align: center;
}

.contact-section-heading h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--color-text);
}

.contact-form {
  gap: 10px;
}

.contact-form .message-form__row p {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid rgba(36, 65, 83, 0.06);
  background: #edf1f5;
  color: var(--color-text);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(81, 100, 115, 0.82);
}

.contact-form textarea {
  min-height: 146px;
}

.contact-form .button {
  min-height: 48px;
  background: #26475b;
  border-color: #26475b;
}

.contact-form .button:hover,
.contact-form .button:focus-visible {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.contact-card-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap:20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-card {
  min-height: 280px;
  padding: 28px 22px;
  border-radius: 8px;
  background: var(--color-surface);
  box-shadow: 4px 0 10px rgba(11, 28, 41, 0.1);
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 18px;
  text-align: center;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.contact-card--featured,
.contact-card:hover {
  background: var(--color-dark-soft);
  box-shadow: none;
}

.contact-card__icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--color-primary);
  color: #fff;
}
.contact-card__icon svg {
  width: 40px;
  height: 40px;
}
.contact-card h3 {
  font-size: 1.4rem;
  line-height: 1.25;
  font-weight: 600;
  color: var(--color-text);
}

.contact-card p{
  line-height: 1.65;
  color: var(--color-text);
  font-size: 1.1rem;
}

.contact-card a {
  color: inherit;
}

.contact-card--featured h3,
.contact-card--featured p,
.contact-card--featured a,
.contact-card:hover h3,
.contact-card:hover p,
.contact-card:hover a {
  color: #fff;
}

.contact-card--featured p,
.contact-card:hover p {
  color: rgba(255, 255, 255, 0.88);
}

.contact-map {
  overflow: hidden;
  border-radius: 10px;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.footer-social a,
.footer-social__item {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.88);
  display: grid;
  place-items: center;
}

.footer-social a {
  transition: color var(--transition), border-color var(--transition), transform var(--transition);
}

.footer-social a:hover,
.footer-social a:focus-visible {
  color: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

/* Responsive: consolidated breakpoints */
@media (max-width: 1200px) {
  :root {
    --container: min(100% - 32px, 1240px);
    --header-height: 60px;
  }
  .nav-toggle {
    display: inline-block;
    margin-left: auto;
  }
.brand{
  width: 42px;height: 42px;
}
  .site-nav,
  .header__actions {
    display: none;
  }

  .site-header.is-open .site-nav,
  .site-header.is-open .header__actions {
    display: flex;
  }

  .site-header.is-open .header__inner {
    position: relative;
    flex-wrap: wrap;
    align-items: flex-start;
    padding: 14px 0 18px;
    padding-right: 64px;
  }

  .site-header.is-open .nav-toggle {
    position: absolute;
    top: 14px;
    right: 0;
    margin-left: 0;
  }

  .site-header.is-open .site-nav {
    order: 10;
    width: 100%;
    padding-top: 14px;
  }

  .site-header.is-open .site-nav__list {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .site-header.is-open .site-nav__item,
  .site-header.is-open .site-nav__item--has-submenu {
    width: 100%;
  }

  .site-header.is-open .site-nav__item--has-submenu::after {
    display: none;
  }

  .site-header.is-open .site-nav__submenu {
    position: static;
    min-width: 0;
    margin-top: 10px;
    padding: 0 0 0 16px;
    background: none;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }

  .site-header.is-open .site-nav__submenu a {
    padding: 6px 0;
    color: rgba(255, 255, 255, 0.78);
  }

  .site-header.is-open .header__actions {
    order: 11;
    width: 100%;
    justify-content: flex-start;
  }

  .site-header.is-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.is-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .brands-head,
  .signature-panel__content,
  .category-layout,
  .footer-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .cert-grid,
  .product-grid,
  .blog-grid,
  .metrics-grid,
  .company-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
 .cert-grid,.process-grid{grid-template-columns: repeat(3, minmax(0, 1fr));}
  .company-showcase {
    display: grid;
    gap: 16px;
  }

  .process-card:not(:first-child)::before {
    content: none;
  }
.metrics-grid{gap: 12px;margin-top: 24px;}
.metric-card{padding: 12px;}
.metric-card__icon {width: 60px;height: 60px;}
.metric-card__icon svg{width: 30px;height: 30px;}
.metric-card strong{font-size: 1.6rem;}
  .showcase-card,
  .showcase-card.is-active {
    flex: unset;
    min-height: 320px;
  }

  .showcase-card__overlay {
    padding: 24px 20px;
  }

  .hero,
  .hero-content {
    min-height: clamp(340px, 62vw, 560px);
  }

  .hero-title {
    margin-bottom: 32px;
  }

  .hero-cta {
    padding: 14px 36px;
    font-size: 0.95rem;
  }

  .section__bg {
    height: 500px;
  }

  .slider-arrow {
    display: none;
  }

  .section-heading h1,
  .section-heading h2,
  .signature-copy h2 {
    font-size: clamp(2rem, 5vw, 3.2rem);
  }

  .category-tab {
    font-size: 1.25rem;
  }

  .category-panel__frame {
    padding: 20px;
  }

  .category-product-grid {
    grid-template-columns: minmax(0, 1fr) 220px;
  }

  .category-product-grid::before {
    top: -28px;
    right: 198px;
    bottom: -20px;
    left: -132px;
  }

  .blog-card__body,
  .product-card,
  .process-card {
    padding-inline: 16px;
  }

  .showcase-card img,.product-list-card__media img,.detail-card-grid img,
  .category-panel__frame img,
  .blog-card img,
  .process-card img {
    object-position: center;width: 100%;
  }

  .message-form__row {
    grid-template-columns: 1fr;
  }

  .footer-bar__inner {
    flex-direction: column;
    justify-content: center;
    padding-block: 12px;
    text-align: center;
  }

  .lang-chip {
    width: 38px;
    height: 38px;
  }

  .button {
    min-height: 46px;
  }

  /* Shared floating contact */
  .floating-contact {
    right: 14px;
  }

  .floating-contact ul {
    gap: 12px;
    padding: 10px;
  }

  .floating-contact__icon {
    width: 54px;
    height: 54px;
  }

  /* About */
  .about-anchor-bar__inner,
  .profile-intro,
  .split-feature,
  .origin-grid{
    grid-template-columns: 1fr;
  }

  .about-anchor-bar__inner {
    justify-items: start;
  }

  .about-breadcrumb {
    white-space: normal;
  }

  .accent-cards,

  .process-strip--five,
  .media-card-grid--two,
  .media-card-grid--four,
  .series-grid,
  .factory-gallery,
  .cert-grid--about {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .process-strip{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .brand-story {
    min-height: 430px;
    padding-inline: 28px;
  }

  .origin-grid__content {
    gap: 26px;
  }

  .process-strip--staggered {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .mosaic-grid {
    grid-template-columns: 1fr 1fr;
  }

  .mosaic-grid__lead {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .process-step:not(:last-child)::after {
    content: none;
  }

  /* Products */
  .products-layout,.news-layout{
    grid-template-columns: 300px minmax(0, 1fr);
  }
.products-panel,.news-panel{padding: 15px;}
.products-panel h2,.news-panel h2{font-size: 2rem;margin-bottom: 10px;}
.products-category-nav a,.news-category-list a{padding: 12px;font-size: 1rem;}
  .product-list-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));gap:20px;
  }

  /* Product detail */
  .product-detail-intro,
  .detail-split,
  .detail-formula {
    grid-template-columns: 1fr;
  }
  .detail-stat-strip{width: 100%;}
  .detail-card-grid,
  .detail-brand-grid,
  .detail-tech-grid,
  .detail-particle-grid,
  .detail-brand-tabs,
  .detail-chain-grid,
  .oem-value-grid,
  .contact-card-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-performance-banner__stats {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    padding: 0 18px;
  }

  .process-strip--sequence {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .detail-process .process-strip__arrow,
  .detail-chain-arrow,
  .process-strip--oem .process-strip__arrow {
    display: none;
  }

  /* OEM */
  .oem-scope-block,
  .oem-scope-block--reverse {
    grid-template-columns: 1fr;
  }

  .oem-scope-block__media img {
    min-height: 320px;
  }

  .process-strip--oem {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  /* News */

  .news-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  :root {
    --container: min(100% - 24px, 1240px);
  }

  .header__inner {
    gap: 16px;
  }

  .button--small {
    padding-inline: 16px;
  }

  .brand-pill-grid,
  .category-product-grid,
  .company-showcase {
    grid-template-columns: 1fr;
  }
  .benefit-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  } 
  .metric-card,
  .product-card,
  .blog-card__body {
    padding-inline: 14px;
  }

  .company-showcase,
  .category-tabs,
  .category-product-list {
    gap: 14px;
  }

  .showcase-card,
  .showcase-card.is-active {
    min-height: 280px;
  }

  .signature-panel__content {
    padding: 60px 0 100px;
  }

  .benefit-grid li {
    min-height: 132px;
    border-radius: 24px;
  }

  .category-product-grid::before {
    display: none;
  }

  .category-product {
    padding: 12px;
  }

  .category-product-list .category-product {
    width: 100%;
  }

  .category-product--featured h3,
  .site-footer h2 {
    font-size: 1.8rem;
  }

  .category-product h3 {
    font-size: 1rem;
  }

  .footer-grid {
    gap: 28px;
    padding-block: 48px;
  }

  /* Shared */
  .page-hero {
    min-height: 220px;
  }

  .floating-contact {
    display: none;
  }

  body {
    padding-bottom: 78px;
  }

  .mobile-dock {
    display: grid;
  }

  .process-strip__arrow {
    display: none;
  }

  /* About */
  .about-anchor-bar__inner {
    padding: 14px;
  }

  .brand-story-grid,
  .accent-cards,
  .process-strip--five,
  .mosaic-grid,
  .split-feature {
    grid-template-columns: 1fr;
  }
  .anchor-pills{display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));}
  .factory-gallery {
    gap: 18px;
  }

  .anchor-pill {
    width: 100%;
    justify-content: center;
  }

  .brand-story-intro {
    margin-bottom: 18px;
  }

  .brand-story {
    min-height: auto;
    padding: 36px 24px 30px;
  }

  .brand-story__badge {
    width: 128px;
    margin-bottom: 22px;
  }

  .brand-story__badge img {
    width: 78px;
  }

  .brand-story h3 {
    margin-bottom: 12px;
  }

  .brand-story p {
    max-width: 32ch;
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .factory-card h3 {
    padding: 18px 5px;
    font-weight: 500;
  }

  .video-item__title {
    font-size: 1.08rem;
  }

  .video-item__play {
    width: 56px;
    height: 36px;
  }

  .video-modal {
    padding: 22px;
  }

  .video-modal__close {
    top: -14px;
    right: -14px;
    width: 42px;
    height: 42px;
  }
.news-card__body{padding:10px 0}
  .process-strip--paired {
    gap: 26px;
  }

  .process-strip--staggered {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 18px;
  }

  .process-strip--paired.process-strip--arrow .process-step::after {
    content: none;
  }

  .process-strip--paired .process-step span,
  .process-strip--staggered .process-step span {
    width: 64px;
    height: 64px;
  }

  .process-strip--paired .process-step h3,
  .process-strip--staggered .process-step h3 {
    font-size: 1.12rem;
  }

  .process-strip--paired .process-step p,
  .process-strip--staggered .process-step p {
    font-size: 0.94rem;
  }

  .tagged-media__label {
    left: 12px;
    bottom: 12px;
    min-height: 36px;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.78rem;
  }

  .mosaic-grid--origin .tagged-media:not(.mosaic-grid__lead) {
    min-height: 0;
  }

  .stacked-heading p,
  .split-feature__content p {
    font-size: 0.98rem;
  }

  .factory-pagination ul {
    gap: 14px;
  }

  .factory-pagination a {
    font-size: 1.2rem;
  }

  /* Products */
  .products-section {
    padding-top: 28px;
  }

  .products-layout,
  .detail-tech-grid,
  .detail-particle-grid,
  .process-strip--oem,
  .news-layout {
    grid-template-columns: 1fr;
  }
.news-card-grid{gap: 20px;}
  .products-panel {
    padding: 18px;
  }
  .products-panel--contact{display: none;}
  .products-panel h2{
    font-size: 1.75rem;
  }

  .products-breadcrumb-bar .about-breadcrumb {
    font-size: 0.88rem;
  }

  .product-list-card__body p {
    min-height: 0;
  }

  /* Product detail */
  .process-strip--sequence {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-performance-banner__stats {
    position: static;
    background: var(--color-dark);
    padding: 18px;
    grid-template-columns: repeat(5, minmax(0, 1fr))
  }

.detail-performance-banner::after{background: none;}
.banner-stat strong{font-size: 1.4rem;}
  .cta-panel--detail .button,
  .cta-panel .button {
    width: 100%;
  }

  /* OEM */
  .oem-heading-block h2,
  .oem-section-heading h2,
  .oem-section-heading h3 {
    line-height: 1.08;
  }

  .oem-section-heading {
    gap: 8px;
  }

  .oem-value-card,
  .oem-option-card {
    padding-inline: 20px;
  }

  .oem-scope-block__media img {
    min-height: 240px;
  }

  .process-strip--oem .process-step p {
    max-width: 30ch;
  }

  /* Contact */
  .contact-page__inner {
    gap: 44px;
  }

  .contact-form .message-form__row {
    grid-template-columns: 1fr;
  }

  .contact-card {
    min-height: 184px;
  }
}

@media (max-width: 480px) {
  /* Shared */
  :root {
    --container: min(100% - 20px, 1240px);
  }

  body {
    padding-bottom: 74px;
  }

  .mobile-dock a {
    gap: 3px;
    padding-inline: 6px;
    font-size: 0.68rem;
  }

  .mobile-dock svg {
    width: 18px;
    height: 18px;
  }


  .tagged-media__label {
    left: 10px;
    bottom: 10px;
    min-height: 34px;
    padding: 7px 12px;
    font-size: 0.72rem;
  }
.section{padding: 48px 0;}
.category-tabs{padding-top: 0;}
.about-breadcrumb{font-size: 0.875rem;}

.section--company .section-heading{padding-top: 24px;}
.section-heading p:last-child, .signature-copy p{font-size: 1rem;}
.metrics-grid{margin-top: 15px;gap: 8px;}
.metric-card strong{font-size: 1.2rem;}
.metric-card__icon svg{width: 20px;height: 20px;}
.metric-card{padding:0;}
.process-grid{gap: 20px;}
.process-card:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 80px;
  left: -10px;
  width: 30px;
  height: 15px;
  background: url("../images/next-arrow.png") no-repeat center center;
  background-size: contain;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 2;
}
.process-card:nth-child(4)::before {
  display: none;
}
  .factory-block {
    gap: 26px;
  }
.detail-kpi span,.banner-stat span{font-size: 0.875rem;}

.blog-card__body{padding:10px 0}
.blog-card h3,.detail-chip,.detail-card__body h3, .detail-feature-card__body h3, .detail-chain-item h3,.factory-card h3{font-size: 1rem;}
.detail-kpi h3{font-size: 1.8rem;}

.about-anchor-bar__inner{grid-template-columns: 1fr;display: grid;}
.anchor-pill{padding: 12px 10px;font-size: 1rem;}
.oem-value-card h4{font-size: 1.2rem;}
.oem-value-card__icon{width: 100px;height: 100px;}
.oem-value-card__icon svg{width: 40px;height: 40px;}
  .factory-pagination ul {
    gap: 10px;
  }

  .factory-pagination a {
    min-width: 24px;
    min-height: 24px;
    font-size: 1rem;
  }

  .video-item__meta {
    gap: 12px;
    padding-top: 12px;
  }

  .video-item__title {
    font-size: 0.98rem;
  }

  .video-item__play {
    width: 50px;
    height: 34px;
    border-radius: 9px;
  }

  .video-item__play svg {
    width: 24px;
    height: 24px;
  }

  .video-modal {
    padding: 16px;
  }

  .video-modal__close {
    top: -10px;
    right: -10px;
    width: 38px;
    height: 38px;
  }

  /* Product detail */
  .product-detail-actions {
    flex-direction: column;
  }

  .product-detail-actions .button {
    width: 100%;
  }

  .product-detail-gallery__panel {
    min-height: 156px;
  }

  .process-strip--sequence {
    grid-template-columns: 1fr;
  }
.brand-story__badge img{width: 60px;}
  /* News */
  .news-panel,
  .news-card {
    padding: 14px;
  }

  .news-panel h2 {
    font-size: 1.8rem;
  }

  .recent-post-list a {
    grid-template-columns: 68px minmax(0, 1fr);
  }

  .recent-post-list img {
    width: 68px;
    height: 54px;
  }

  /* Contact */
  .contact-section-heading h2 {
    font-size: 1.9rem;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 14px 16px;
  }

  .contact-card {
    padding: 24px 18px;
  }
}

@media (hover: none) {
  .showcase-card:not(.is-active) .showcase-card__overlay p,
  .showcase-card:not(.is-active) .showcase-card__overlay .button {
    opacity: 1;
    max-height: none;
  }
}
