:root {
  --sem-navy: #073a67;
  --sem-navy-dark: #032a4b;
  --sem-navy-soft: #eaf0f5;
  --sem-green: #5d963d;
  --sem-green-dark: #47782d;
  --sem-green-soft: #eef4e9;
  --sem-cream: #f7f6f2;
  --sem-white: #ffffff;
  --sem-ink: #14263a;
  --sem-muted: #667482;
  --sem-line: #dce3e8;
  --sem-shadow: 0 24px 70px rgba(7, 58, 103, 0.1);
  --font-display: "DM Sans", sans-serif;
  --font-body: "DM Sans", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: auto;
}
body {
  margin: 0;
  color: var(--sem-ink);
  background: var(--sem-white);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
}
body.is-locked {
  overflow: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}
button,
input,
textarea,
select {
  font: inherit;
}
button {
  color: inherit;
}
::selection {
  color: #fff;
  background: var(--sem-navy);
}
.brand-line {
  display: none;
}
.site-header {
  height: 104px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(
    180deg,
    rgba(4, 10, 16, 0.2) 0%,
    rgba(4, 10, 16, 0.08) 68%,
    rgba(4, 10, 16, 0) 100%
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: none;
  backdrop-filter: none;
  transition:
    height 0.28s ease,
    background 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    backdrop-filter 0.28s ease;
}
.site-header.is-sticky {
  height: 86px;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--sem-line);
  box-shadow: 0 12px 38px rgba(7, 58, 103, 0.08);
  backdrop-filter: blur(14px);
}
.header-shell {
  height: 100%;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  padding-left: 42px;
  padding-right: 42px;
}
.site-brand {
  width: 174px;
}
.site-brand img {
  width: 100%;
  height: auto;
  transition: filter 0.25s ease;
}
.site-header:not(.is-sticky) .site-brand img {
  filter: brightness(0) invert(1) drop-shadow(0 3px 12px rgba(4, 10, 16, 0.38));
}
.desktop-navigation {
  height: 100%;
  display: flex;
  justify-content: center;
}
.main-menu {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.main-menu > li {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}
.main-menu > li > a {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  color: #fff;
  font-size: 0.94rem;
  font-weight: 800;
  text-shadow: 0 2px 10px rgba(4, 10, 16, 0.58);
  transition:
    color 0.25s ease,
    text-shadow 0.25s ease;
}
.site-header.is-sticky .main-menu > li > a {
  color: var(--sem-ink);
  text-shadow: none;
}
.main-menu > li > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 28px;
  height: 2px;
  background: var(--sem-green);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.22s;
}
.main-menu > li > a:hover::after,
.main-menu > li > a.active::after {
  transform: scaleX(1);
}
.main-menu > li > a i {
  font-size: 0.7rem;
  transition: transform 0.22s ease;
}
.has-mega:hover > a i,
.has-mega:focus-within > a i {
  transform: rotate(180deg);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-icon,
.language-trigger {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 0;
  color: #fff;
  background: transparent;
  font-size: 1.14rem;
  text-shadow: 0 2px 10px rgba(4, 10, 16, 0.58);
  transition:
    color 0.25s ease,
    text-shadow 0.25s ease;
}
.site-header.is-sticky .header-icon,
.site-header.is-sticky .language-trigger {
  color: var(--sem-ink);
  text-shadow: none;
}
.language-dropdown {
  position: relative;
}
.language-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 116px;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--sem-line);
  box-shadow: var(--sem-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.2s;
}
.language-dropdown:hover .language-menu,
.language-dropdown:focus-within .language-menu,
.language-dropdown.open .language-menu {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.language-menu a {
  height: 38px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  color: var(--sem-ink);
  font-size: 0.78rem;
  font-weight: 800;
}
.language-menu a:hover,
.language-menu a.active {
  color: #fff;
  background: var(--sem-navy);
}
.mobile-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  position: relative;
  border: 0;
  background: transparent;
}
.mobile-menu-toggle span {
  position: absolute;
  left: 8px;
  right: 8px;
  height: 2px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(3, 42, 75, 0.36);
  transition: background 0.25s ease;
}
.site-header.is-sticky .mobile-menu-toggle span {
  background: var(--sem-ink);
  box-shadow: none;
}
.mobile-menu-toggle span:first-child {
  top: 16px;
}
.mobile-menu-toggle span:last-child {
  bottom: 16px;
}
.mega-menu {
  position: fixed;
  left: 50%;
  top: 104px;
  width: min(1260px, calc(100% - 64px));
  display: grid;
  grid-template-columns: 0.8fr 1.5fr;
  gap: 52px;
  padding: 44px;
  color: var(--sem-ink);
  background: #fff;
  border-top: 3px solid var(--sem-green);
  box-shadow: var(--sem-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 14px);
  transition: 0.22s;
}
.mega-menu-products {
  width: min(1180px, calc(100% - 48px));
  grid-template-columns: minmax(250px, 0.78fr) minmax(0, 1.9fr);
  gap: 34px;
  padding: 28px 32px;
}
.site-header.is-sticky .mega-menu {
  top: 86px;
}
.has-mega:hover .mega-menu,
.has-mega:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.mega-intro {
  padding-right: 46px;
  border-right: 1px solid var(--sem-line);
}
.mega-intro h3 {
  margin: 0 0 18px;
  font: 700 1.65rem/1.3 var(--font-display);
  letter-spacing: -0.035em;
}
.mega-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 24px;
  align-content: center;
}
.mega-links a,
.mega-product-columns a {
  padding: 8px 0;
  border-bottom: 1px solid var(--sem-line);
  font-size: 0.82rem;
  font-weight: 600;
}
.mega-product-columns {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.3fr);
  gap: 32px;
}
.mega-product-columns > div {
  display: flex;
  flex-direction: column;
}
.mega-menu-products .mega-product-columns a {
  white-space: nowrap;
}
.mega-heading {
  margin-bottom: 5px;
  color: var(--sem-green);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.mega-product-columns .mega-reusable-link {
  margin-top: 8px;
  padding: 8px 0 8px 12px;
  border: 0;
  border-left: 3px solid var(--sem-green);
  background: transparent;
  color: var(--sem-navy);
  font-weight: 800;
}
.mega-product-columns .mega-reusable-link i {
  margin-left: 6px;
  color: var(--sem-green);
}
.micro-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--sem-green);
  font: 800 0.7rem/1 var(--font-display);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.micro-label::before {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
}
.micro-label-light {
  color: #fff;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--sem-navy);
  font-size: 0.82rem;
  font-weight: 800;
}
.text-link i {
  transition: 0.2s;
}
.text-link:hover i {
  transform: translateX(4px);
}
.text-link-light {
  color: #fff;
}
.mobile-navigation {
  position: fixed;
  inset: 0;
  z-index: 2000;
  padding: 24px 28px 34px;
  background: var(--sem-cream);
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: 0.32s;
}
.mobile-navigation.open {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--sem-line);
}
.mobile-nav-head img {
  width: 145px;
}
.mobile-nav-head button {
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  font-size: 1.25rem;
}
.mobile-lang {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 20px 0 10px;
}
.mobile-lang i {
  color: var(--sem-green);
}
.mobile-lang a {
  padding: 7px 11px;
  border: 1px solid var(--sem-line);
  font-size: 0.7rem;
  font-weight: 800;
}
.mobile-lang a.active {
  color: #fff;
  background: var(--sem-navy);
}
.mobile-navigation nav {
  display: flex;
  flex-direction: column;
  padding: 18px 0;
}
.mobile-navigation nav a {
  padding: 8px 0;
  font: 700 clamp(1.7rem, 6vw, 3rem)/1.15 var(--font-display);
  letter-spacing: -0.04em;
}
.mobile-nav-group {
  padding: 8px 0 10px;
}
.mobile-nav-group > a {
  display: block;
  padding-top: 0;
}
.mobile-subnav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 16px;
  margin-top: 10px;
  padding: 14px 0 4px;
  border-top: 1px solid var(--sem-line);
}
.mobile-navigation nav .mobile-subnav a {
  padding: 0;
  color: var(--sem-navy);
  font: 800 0.88rem/1.2 var(--font-body);
  letter-spacing: 0;
}
.mobile-nav-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid var(--sem-line);
  font-size: 0.78rem;
  font-weight: 700;
}
.search-drawer {
  position: fixed;
  inset: 0;
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  color: #fff;
  background: rgba(3, 42, 75, 0.98);
  opacity: 0;
  visibility: hidden;
  transition: 0.24s;
}
.search-drawer.open {
  opacity: 1;
  visibility: visible;
}
.search-close {
  position: absolute;
  top: 28px;
  right: 32px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  background: transparent;
}
.search-content {
  width: min(900px, 100%);
}
.search-content h2 {
  margin: 0 0 36px;
  font: 700 clamp(2.5rem, 5vw, 5.5rem)/1 var(--font-display);
  letter-spacing: -0.06em;
}
.search-content form {
  display: grid;
  grid-template-columns: 1fr 62px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.search-content input {
  min-width: 0;
  min-height: 86px;
  border: 0;
  outline: 0;
  color: #fff;
  background: transparent;
  font: 600 clamp(1.4rem, 3.5vw, 3.2rem) var(--font-display);
}
.search-content input::placeholder {
  color: rgba(255, 255, 255, 0.36);
}
.search-content form button {
  border: 0;
  color: #fff;
  background: transparent;
}
.search-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.search-quick button {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #fff;
  background: transparent;
  font-size: 0.72rem;
}
.search-feedback {
  min-height: 24px;
  margin-top: 22px;
  color: #b9d892;
}
.btn {
  border-radius: 0;
  font-weight: 700;
}
.btn-sem-navy {
  color: #fff;
  background: var(--sem-navy);
  border-color: var(--sem-navy);
}
.btn-sem-navy:hover {
  color: #fff;
  background: var(--sem-navy-dark);
  border-color: var(--sem-navy-dark);
}
.btn-sem-green {
  color: #fff;
  background: var(--sem-green);
  border-color: var(--sem-green);
}
.btn-sem-green:hover {
  color: #fff;
  background: var(--sem-green-dark);
  border-color: var(--sem-green-dark);
}
.section {
  padding: 120px 0;
}
.section-intro {
  margin-bottom: 56px;
}
.section-intro h2,
.agenda-header h2,
.certificate-heading h2,
.company-copy h2,
.environment-content h2,
.page-hero h1,
.product-page-hero h1,
.about-sticky h2,
.values-section h2,
.production-detail h2,
.rd-section h2,
.quality-policy h2,
.responsibility-section h2,
.showcase-copy h2,
.related-products h2,
.newsletter-box h2,
.contact-details h2,
.contact-form-section h2,
.contact-map-placeholder h2 {
  margin: 0;
  font: 700 clamp(2.5rem, 4.7vw, 4.5rem)/1.05 var(--font-display);
  letter-spacing: -0.058em;
}
.section-intro p {
  margin: 0;
  color: var(--sem-muted);
  font-size: 1rem;
}
.home-hero {
  background: var(--sem-cream);
}
.heroSwiper {
  height: 760px;
  min-height: 100svh;
}
.hero-slide {
  position: relative;
  overflow: hidden;
}
.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-background::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      180deg,
      rgba(4, 10, 16, 0.4) 0%,
      rgba(4, 10, 16, 0.18) 120px,
      rgba(4, 10, 16, 0.06) 230px,
      rgba(4, 10, 16, 0) 44%
    ),
    linear-gradient(
      90deg,
      rgba(4, 10, 16, 0.04) 0%,
      rgba(4, 10, 16, 0.02) 46%,
      rgba(4, 10, 16, 0.08) 100%
    );
  pointer-events: none;
}
.hero-background::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(255, 255, 255, 0.9) 42%,
    rgba(255, 255, 255, 0.1) 70%
  );
}
.hero-slide-dark .hero-background::after {
  background: linear-gradient(
    90deg,
    rgba(3, 42, 75, 0.94),
    rgba(3, 42, 75, 0.7) 45%,
    rgba(3, 42, 75, 0.12) 72%
  );
}
.hero-background img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-container {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  padding-top: 104px;
}
.hero-copy {
  width: min(650px, 52%);
  padding-bottom: 60px;
}
.hero-copy h1,
.hero-copy h2 {
  margin: 0;
  /* Reserve two editorial title lines so CTAs align across every slide. */
  min-height: 1.92em;
  font: 800 clamp(3.6rem, 6vw, 6.7rem)/0.96 var(--font-display);
  letter-spacing: -0.072em;
}
.hero-copy h1 em,
.hero-copy h2 em {
  color: var(--sem-navy);
  font-style: normal;
  font-weight: 500;
}
.hero-copy p {
  max-width: 570px;
  /* Descriptions also use a consistent two-line content slot. */
  min-height: 3.1em;
  margin: 24px 0 32px;
  color: #526170;
  font-size: 1.06rem;
  line-height: 1.55;
}
.hero-slide-dark .hero-copy {
  color: #fff;
}
.hero-slide-dark .hero-copy p {
  color: rgba(255, 255, 255, 0.76);
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}
.video-button {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  font-weight: 700;
}
.video-button span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(20, 38, 58, 0.28);
  border-radius: 50%;
}
.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateX(-50%);
}
.hero-controls .swiper-pagination {
  position: static;
  width: auto;
}
.hero-controls .swiper-pagination-bullet {
  width: 30px;
  height: 2px;
  margin: 0 5px !important;
  border-radius: 0;
  background: rgba(20, 38, 58, 0.35);
  opacity: 1;
}
.hero-controls .swiper-pagination-bullet-active {
  background: var(--sem-navy);
}
.hero-nav-buttons {
  display: flex;
}
.hero-nav-buttons button,
.product-swiper-footer button {
  width: 48px;
  height: 48px;
  border: 1px solid var(--sem-line);
  background: rgba(255, 255, 255, 0.85);
}
.hero-nav-buttons button + button,
.product-swiper-footer button + button {
  border-left: 0;
}
.product-architecture {
  background: var(--sem-cream);
}
.solution-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: repeat(2, 330px);
  gap: 16px;
}
.solution-card {
  position: relative;
  overflow: hidden;
}
.solution-card-large {
  grid-row: 1/3;
}
.solution-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
}
.solution-card:hover img {
  transform: scale(1.035);
}
.solution-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(3, 42, 75, 0.9),
    rgba(3, 42, 75, 0.06) 70%
  );
}
.solution-content {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 28px;
  color: #fff;
}
.solution-content > span {
  color: #b9d892;
  font-size: 0.66rem;
  font-weight: 800;
}
.solution-content h3 {
  margin: 8px 0 14px;
  font: 700 clamp(1.5rem, 2.5vw, 2.8rem)/1.1 var(--font-display);
  letter-spacing: -0.04em;
}
.solution-content ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 18px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
}
.solution-content a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  font-weight: 800;
}
.company-story {
  background: #fff;
}
.company-story-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 80px;
  align-items: center;
}
.company-copy p {
  color: var(--sem-muted);
}
.company-list {
  display: grid;
  gap: 12px;
  margin: 30px 0;
}
.company-list div {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  font-weight: 600;
}
.company-list i {
  color: var(--sem-green);
}
.company-visual {
  position: relative;
}
.company-visual > img {
  width: 100%;
  min-height: 600px;
  object-fit: cover;
}
.fact-panel {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  color: #fff;
  background: rgba(3, 42, 75, 0.94);
}
.fact-panel div {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}
.fact-panel div:last-child {
  border-right: 0;
}
.fact-panel strong {
  font: 700 1.75rem var(--font-display);
}
.fact-panel span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.68rem;
}
.production-methods {
  display: grid;
  grid-template-columns: 1.25fr repeat(4, 1fr);
  margin-top: 70px;
  border-top: 1px solid var(--sem-line);
  border-left: 1px solid var(--sem-line);
  border-radius: var(--sem-radius-md);
  overflow: hidden;
}
.production-methods > div {
  min-height: 145px;
  padding: 26px;
  border-right: 1px solid var(--sem-line);
  border-bottom: 1px solid var(--sem-line);
}
.method-heading h3 {
  margin: 0;
  font: 700 1.45rem var(--font-display);
}
.method span {
  display: block;
  margin-bottom: 18px;
  color: var(--sem-green);
  font-size: 0.66rem;
  font-weight: 800;
}
.method strong,
.method small {
  display: block;
}
.method strong {
  font: 700 0.9rem/1.3 var(--font-display);
}
.method small {
  margin-top: 6px;
  color: var(--sem-muted);
  font-size: 0.7rem;
}
.feature-editorial {
  background: var(--sem-cream);
}
.feature-layout {
  display: grid;
  grid-template-columns: 1.45fr 0.75fr;
  grid-template-rows: repeat(2, 310px);
  gap: 16px;
}
.feature-primary,
.feature-secondary {
  position: relative;
  overflow: hidden;
}
.feature-primary {
  grid-row: 1/3;
}
.feature-primary img,
.feature-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
}
.feature-primary:hover img,
.feature-secondary:hover img {
  transform: scale(1.035);
}
.feature-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(3, 42, 75, 0.94),
    rgba(3, 42, 75, 0.07) 72%
  );
}
.feature-shade-blue {
  background: linear-gradient(
    0deg,
    rgba(7, 58, 103, 0.9),
    rgba(7, 58, 103, 0.12)
  );
}
.feature-shade-green {
  background: linear-gradient(
    0deg,
    rgba(71, 120, 45, 0.9),
    rgba(71, 120, 45, 0.12)
  );
}
.feature-copy {
  position: absolute;
  left: 40px;
  right: 40px;
  bottom: 36px;
  color: #fff;
}
.feature-copy h2 {
  max-width: 700px;
  margin: 0 0 22px;
  font: 700 clamp(2.3rem, 4vw, 4.6rem)/1.04 var(--font-display);
  letter-spacing: -0.055em;
}
.feature-action {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  font-weight: 800;
}
.feature-small-copy {
  position: absolute;
  left: 26px;
  bottom: 24px;
  color: #fff;
}
.feature-small-copy > span {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.feature-small-copy h3 {
  max-width: 360px;
  margin: 8px 40px 0 0;
  font: 700 1.45rem/1.18 var(--font-display);
  letter-spacing: -0.035em;
}
.feature-small-copy i {
  position: absolute;
  right: 0;
  bottom: 0;
}
.environment-section {
  min-height: 760px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  color: #fff;
  background: var(--sem-navy-dark);
}
.environment-image {
  min-height: 760px;
}
.environment-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.environment-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px 8vw;
}
.environment-content p {
  max-width: 630px;
  color: rgba(255, 255, 255, 0.72);
}
.environment-links {
  margin: 30px 0;
}
.environment-links a {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.84rem;
  font-weight: 700;
}
.environment-links a:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.environment-links span {
  color: #b9d892;
  font-size: 0.65rem;
  font-weight: 800;
}
.agenda-section {
  background: #fff;
}
.agenda-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 50px;
}
.agenda-header h2 {
  font-size: clamp(2.4rem, 4vw, 3.5rem);
}
.agenda-tabs {
  display: flex;
  gap: 22px;
}
.agenda-tabs button {
  padding: 0 0 10px;
  border: 0;
  border-bottom: 2px solid transparent;
  color: var(--sem-muted);
  background: transparent;
  font-size: 0.78rem;
  font-weight: 800;
}
.agenda-tabs button.active {
  color: var(--sem-navy);
  border-color: var(--sem-navy);
}
.agenda-panel {
  display: none;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
}
.agenda-panel.active {
  display: grid;
}
.agenda-featured {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  border: 1px solid var(--sem-line);
}
.agenda-featured img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}
.agenda-featured > div {
  padding: 34px;
}
.agenda-date {
  color: var(--sem-green);
  font-size: 0.66rem;
  font-weight: 800;
}
.agenda-featured h3 {
  margin: 14px 0;
  font: 700 1.65rem/1.25 var(--font-display);
  letter-spacing: -0.035em;
}
.agenda-featured p {
  color: var(--sem-muted);
  font-size: 0.87rem;
}
.agenda-featured a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  font-size: 0.78rem;
  font-weight: 800;
}
.agenda-list {
  border-top: 1px solid var(--sem-line);
}
.agenda-list a {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 23px 0;
  border-bottom: 1px solid var(--sem-line);
}
.agenda-list span {
  color: var(--sem-green);
  font-size: 0.64rem;
  font-weight: 800;
}
.agenda-list strong {
  font: 700 0.92rem/1.4 var(--font-display);
}
.certificates-section {
  padding-top: 0;
  background: #fff;
}
.certificates-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  border-top: 1px solid var(--sem-line);
  border-left: 1px solid var(--sem-line);
}
.certificates-grid > div {
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  border-right: 1px solid var(--sem-line);
  border-bottom: 1px solid var(--sem-line);
}
.certificate-heading h2 {
  font-size: 1.6rem;
  letter-spacing: -0.035em;
}
.certificate-mark {
  align-items: center;
  text-align: center;
}
.certificate-mark strong {
  font: 700 1.2rem var(--font-display);
}
.certificate-mark span {
  color: var(--sem-muted);
  font-size: 0.68rem;
}
.prefooter-cta {
  padding: 72px 0;
  color: #fff;
  background: linear-gradient(90deg, var(--sem-navy-dark), var(--sem-navy));
}
.prefooter-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}
.prefooter-grid h2 {
  max-width: 800px;
  margin: 0;
  font: 700 clamp(2rem, 3.5vw, 3.8rem)/1.08 var(--font-display);
  letter-spacing: -0.05em;
}
.prefooter-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}
.site-footer {
  color: rgba(255, 255, 255, 0.68);
  background: #02233e;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.3fr) repeat(3, minmax(180px, 0.95fr)) minmax(270px, 1.2fr);
  align-items: start;
  gap: clamp(28px, 2.5vw, 52px);
  padding: 64px 0 44px;
}
.footer-brand img {
  width: 165px;
  filter: brightness(0) invert(1);
}
.footer-brand p {
  max-width: 300px;
  margin-top: 20px;
  font-size: 0.84rem;
}
.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.footer-column h3,
.footer-contact h3 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 0.861rem;
}
.footer-column a {
  display: block;
  margin: 0 0 13px;
  font-size: 0.798rem;
  line-height: 1.45;
}
.footer-column--corporate {
  min-width: 0;
}
.footer-column--corporate a {
  position: relative;
  display: block;
  min-height: 0;
  margin: 0 0 13px;
  line-height: 1.45;
}
.footer-column--corporate a::before {
  content: '';
  position: absolute;
  left: -10px;
  width: 4px;
  height: 4px;
  top: 0.58rem;
  border-radius: 50%;
  background: var(--sem-green);
  opacity: 0;
  transform: scale(0.4);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.footer-column--corporate a:hover::before {
  opacity: 1;
  transform: scale(1);
}
.site-footer a {
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}
.footer-column a:hover,
.footer-contact a:hover,
.footer-bottom a:hover {
  color: var(--sem-green);
}
.footer-social a:hover {
  color: var(--sem-green);
  border-color: var(--sem-green);
  transform: translateY(-2px);
}
.footer-contact p,
.footer-contact a {
  display: flex;
  gap: 10px;
  margin: 0 0 13px;
  font-size: 0.798rem;
  line-height: 1.45;
}
.footer-contact i {
  width: 16px;
  flex: 0 0 auto;
}
.footer-contact__location {
  color: #fff;
  font-weight: 700;
}
.footer-bottom {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 0.714rem;
}
.footer-bottom div {
  display: flex;
  gap: 22px;
}
.footer-credit {
  white-space: nowrap;
}
.footer-credit a {
  color: #fff;
  font-weight: 700;
}
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 900;
  width: 46px;
  height: 46px;
  border: 0;
  color: #fff;
  background: var(--sem-green);
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.featured-catalog-float {
  position: fixed;
  z-index: 890;
  top: 50%;
  left: 0;
  display: flex;
  align-items: center;
  width: 60px;
  min-height: 60px;
  overflow: hidden;
  border-radius: 0 14px 14px 0;
  background: var(--sem-navy);
  box-shadow: 8px 12px 26px rgba(3, 31, 53, .2);
  color: #fff;
  text-decoration: none;
  transform: translateY(-50%);
  transition: width .25s ease, background .2s ease, transform .2s ease;
}
.featured-catalog-float:hover {
  width: 148px;
  background: var(--sem-green-600);
  color: #fff;
  transform: translateY(calc(-50% - 3px));
}
.featured-catalog-float__icon {
  display: grid;
  flex: 0 0 60px;
  width: 60px;
  min-height: 60px;
  place-items: center;
  border-right: 1px solid rgba(255,255,255,.18);
  font-size: 1.15rem;
}
.featured-catalog-float__copy {
  padding: 9px 16px 9px 14px;
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .02em;
  white-space: nowrap;
}
@media (max-width: 767.98px) {
  .featured-catalog-float {
    width: 48px;
    min-height: 48px;
    border-radius: 0 12px 12px 0;
  }
  .featured-catalog-float:hover { width: 118px; }
  .featured-catalog-float__icon {
    flex-basis: 48px;
    width: 48px;
    min-height: 48px;
    font-size: .92rem;
  }
  .featured-catalog-float__copy {
    padding: 7px 13px 7px 11px;
    font-size: .7rem;
  }
}
.page-hero,
.product-page-hero {
  padding: 110px 0;
  background: var(--sem-cream);
}
.page-hero-grid,
.product-page-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.page-hero p,
.product-page-hero p {
  max-width: 620px;
  color: var(--sem-muted);
}
.page-hero-grid img,
.product-page-grid img {
  width: 100%;
  min-height: 480px;
  object-fit: cover;
}
.about-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 90px;
}
.about-sticky {
  align-self: start;
  position: sticky;
  top: 110px;
}
.rich-text p {
  margin: 0 0 24px;
  color: var(--sem-muted);
  font-size: 1rem;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 60px;
  border-top: 1px solid var(--sem-line);
  border-left: 1px solid var(--sem-line);
}
.stats-grid > div {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  border-right: 1px solid var(--sem-line);
  border-bottom: 1px solid var(--sem-line);
}
.stats-grid strong {
  font: 700 2rem var(--font-display);
  color: var(--sem-navy);
}
.stats-grid span {
  color: var(--sem-muted);
  font-size: 0.72rem;
}
.values-section {
  background: var(--sem-cream);
}
.value-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 50px;
}
.value-cards article {
  min-height: 280px;
  padding: 32px;
  background: #fff;
  border-top: 3px solid var(--sem-green);
}
.value-cards span,
.rd-firsts span {
  color: var(--sem-green);
  font-size: 0.66rem;
  font-weight: 800;
}
.value-cards h3,
.rd-firsts h3 {
  margin: 22px 0 12px;
  font: 700 1.4rem var(--font-display);
}
.value-cards p,
.rd-firsts p {
  color: var(--sem-muted);
  font-size: 0.86rem;
}
.split-editorial {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}
.split-editorial img {
  width: 100%;
  min-height: 620px;
  object-fit: cover;
}
.split-editorial p {
  color: var(--sem-muted);
}
.numbered-list {
  margin-top: 28px;
  border-top: 1px solid var(--sem-line);
}
.numbered-list div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--sem-line);
  font-size: 0.86rem;
  font-weight: 700;
}
.numbered-list span {
  color: var(--sem-green);
  font-size: 0.66rem;
}
.rd-section {
  background: var(--sem-navy-dark);
  color: #fff;
}
.rd-section .section-intro p {
  color: rgba(255, 255, 255, 0.7);
}
.rd-number-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
.rd-number-grid > div {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.rd-number-grid strong {
  font: 700 2.5rem var(--font-display);
}
.rd-number-grid span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.75rem;
}
.rd-firsts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 50px;
}
.rd-firsts article {
  min-height: 260px;
  padding: 28px;
  color: var(--sem-ink);
  background: #fff;
}
.quality-policy {
  background: var(--sem-green-soft);
}
.quality-policy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.quality-policy blockquote {
  margin: 0 0 26px;
  padding-left: 28px;
  border-left: 3px solid var(--sem-green);
  font: 600 1.4rem/1.5 var(--font-display);
}
.quality-policy p {
  color: var(--sem-muted);
}
.timeline-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--sem-line);
  border-left: 1px solid var(--sem-line);
}
.timeline-list article {
  min-height: 200px;
  padding: 30px;
  border-right: 1px solid var(--sem-line);
  border-bottom: 1px solid var(--sem-line);
}
.timeline-list span {
  color: var(--sem-green);
  font-size: 0.72rem;
  font-weight: 800;
}
.timeline-list p {
  margin: 16px 0 0;
  color: var(--sem-muted);
}
.breadcrumb {
  font-size: 0.72rem;
}
.breadcrumb a {
  color: var(--sem-muted);
}
.product-subcategories {
  background: #fff;
}
.product-search-box,
.blog-search {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border: 1px solid var(--sem-line);
  background: #fff;
}
.product-search-box input,
.blog-search input {
  width: 100%;
  min-height: 44px;
  border: 0;
  outline: 0;
}
.subcategory-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--sem-line);
  border-left: 1px solid var(--sem-line);
}
.subcategory-card {
  min-height: 175px;
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: end;
  gap: 14px;
  padding: 26px;
  border-right: 1px solid var(--sem-line);
  border-bottom: 1px solid var(--sem-line);
  transition: 0.2s;
}
.subcategory-card:hover {
  color: #fff;
  background: var(--sem-navy);
}
.subcategory-card span {
  align-self: start;
  color: var(--sem-green);
  font-size: 0.66rem;
  font-weight: 800;
}
.subcategory-card h3 {
  margin: 0;
  font: 700 1rem/1.3 var(--font-display);
}
.product-empty-state,
.blog-empty-state {
  padding: 40px;
  text-align: center;
  background: var(--sem-cream);
}
.product-showcase {
  background: var(--sem-cream);
}
.showcase-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 70px;
  align-items: center;
}
.productSwiper {
  background: #fff;
}
.productSwiper img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}
.product-swiper-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px;
  background: #fff;
  border-top: 1px solid var(--sem-line);
}
.product-pagination {
  position: static !important;
  width: auto !important;
}
.showcase-copy p {
  color: var(--sem-muted);
}
.showcase-links {
  margin-top: 30px;
  border-top: 1px solid var(--sem-line);
}
.showcase-links a {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--sem-line);
}
.showcase-links strong,
.showcase-links small {
  display: block;
}
.showcase-links strong {
  font-size: 0.86rem;
}
.showcase-links small {
  color: var(--sem-muted);
  font-size: 0.7rem;
}
.related-products {
  background: #fff;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--sem-line);
  border-left: 1px solid var(--sem-line);
}
.related-grid a {
  min-height: 160px;
  display: grid;
  grid-template-columns: 30px 1fr auto;
  align-items: end;
  gap: 12px;
  padding: 24px;
  border-right: 1px solid var(--sem-line);
  border-bottom: 1px solid var(--sem-line);
}
.related-grid span {
  align-self: start;
  color: var(--sem-green);
  font-size: 0.66rem;
}
.related-grid strong {
  font: 700 0.9rem/1.35 var(--font-display);
}
.blog-listing {
  background: #fff;
}
.blog-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
}
.blog-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.blog-filter button {
  padding: 10px 16px;
  border: 1px solid var(--sem-line);
  background: #fff;
  font-size: 0.76rem;
  font-weight: 700;
}
.blog-filter button.active {
  color: #fff;
  background: var(--sem-navy);
  border-color: var(--sem-navy);
}
.blog-search {
  min-width: 280px;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.blog-card {
  border: 1px solid var(--sem-line);
}
.blog-card-image {
  overflow: hidden;
}
.blog-card img {
  width: 100%;
  aspect-ratio: 1.7;
  object-fit: cover;
  transition: 0.5s;
}
.blog-card:hover img {
  transform: scale(1.035);
}
.blog-card-content {
  min-height: 220px;
  padding: 24px;
  position: relative;
}
.blog-card-content > span {
  color: var(--sem-green);
  font-size: 0.65rem;
  font-weight: 800;
}
.blog-card-content h3 {
  margin: 12px 0 30px;
  font: 700 1.15rem/1.35 var(--font-display);
}
.blog-card-content > div {
  position: absolute;
  left: 24px;
  bottom: 22px;
  font-size: 0.75rem;
  font-weight: 800;
}
.newsletter-section {
  background: var(--sem-cream);
}
.newsletter-box {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 60px;
  align-items: center;
  padding: 58px;
  color: #fff;
  background: var(--sem-navy);
}
.newsletter-box p {
  color: rgba(255, 255, 255, 0.7);
}
.newsletter-box form {
  display: grid;
  grid-template-columns: 1fr auto;
}
.newsletter-box input {
  min-width: 0;
  min-height: 54px;
  padding: 0 16px;
  border: 0;
}
.newsletter-box button {
  padding: 0 20px;
  border: 0;
  color: #fff;
  background: var(--sem-green);
  font-weight: 700;
}
.newsletter-box small {
  grid-column: 1/-1;
  min-height: 22px;
  margin-top: 8px;
  color: #b9d892;
}
.contact-details {
  background: #fff;
}
.contact-location-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.location-card {
  padding: 44px;
  border: 1px solid var(--sem-line);
}
.location-card h2 {
  font-size: 2.4rem;
}
.location-card address {
  min-height: 80px;
  color: var(--sem-muted);
  font-style: normal;
}
.location-links {
  border-top: 1px solid var(--sem-line);
}
.location-links a {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--sem-line);
}
.location-links strong,
.location-links span {
  display: block;
}
.location-links strong {
  font-size: 0.75rem;
}
.location-links span {
  font-size: 0.8rem;
}
.location-links i {
  color: var(--sem-green);
}
.contact-form-section {
  background: var(--sem-cream);
}
.contact-form-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 80px;
}
.contact-form-section p {
  color: var(--sem-muted);
}
.contact-note {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  padding: 20px;
  background: #fff;
  border-left: 3px solid var(--sem-green);
}
.contact-note p {
  margin: 0;
  font-size: 0.8rem;
}
.sem-form {
  padding: 40px;
  background: #fff;
}
.sem-form label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.74rem;
  font-weight: 700;
}
.sem-form input,
.sem-form select,
.sem-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--sem-line);
  outline: 0;
  background: #fff;
}
.sem-form input:focus,
.sem-form select:focus,
.sem-form textarea:focus {
  border-color: var(--sem-navy);
  box-shadow: 0 0 0 3px rgba(7, 58, 103, 0.07);
}
.sem-check {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
}
.sem-check input {
  width: auto;
  margin-top: 4px;
}
.sem-check span {
  color: var(--sem-muted);
  font-weight: 400;
}
.form-feedback {
  min-height: 22px;
  margin: 10px 0 0 !important;
  text-align: center;
  font-size: 0.78rem;
}
.contact-map-placeholder {
  padding: 90px 0;
  color: #fff;
  background: var(--sem-navy-dark);
}
.map-placeholder-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}
.map-placeholder-inner img {
  width: 100%;
  max-height: 440px;
  object-fit: cover;
}
.map-placeholder-inner p {
  color: rgba(255, 255, 255, 0.7);
}
