:root {
  --green: #0f6b3a;
  --green-dark: #0a532d;
  --bg: #ffffff;
  --text: #151515;
  --white: #ffffff;
  --border: #e6e6e3;
  --surface: #ffffff;
  --surface-shadow-soft: 0 8px 24px rgba(15, 107, 58, 0.04);
  --surface-shadow-soft-hover: 0 12px 28px rgba(15, 107, 58, 0.055);
  --container-width: 1120px;
  --topbar-height: 37px;
  --nav-height: 54px;
  --header-height: calc(var(--topbar-height) + var(--nav-height));
  --hero-offset: var(--topbar-height);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-padding-top: calc(var(--nav-height) + 16px);
}

body {
  font-family: "Roboto Slab", serif;
  background: var(--bg);
  color: var(--text);
  position: relative;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(var(--container-width), calc(100% - 48px));
  margin: 0 auto;
}

.topbar {
  position: static;
  background: var(--white);
}

.topbar-inner {
  min-height: var(--topbar-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 11px;
}

.top-left,
.top-right {
  display: flex;
  align-items: center;
  gap: 13px;
}

.top-left a,
.top-right a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.top-left img,
.top-right img {
  width: 12px;
  height: 12px;
  object-fit: contain;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-size: 10px;
  line-height: 1.1;
  white-space: nowrap;
}

.main-nav {
  position: sticky;
  top: 0;
  z-index: 55;
  background: transparent;
  border-bottom: 1px solid transparent;
  margin-bottom: calc(-1 * var(--nav-height));
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition:
    background-color 0.32s ease,
    border-color 0.32s ease,
    box-shadow 0.32s ease,
    opacity 0.32s ease,
    backdrop-filter 0.32s ease,
    -webkit-backdrop-filter 0.32s ease;
  animation: header-reveal 0.68s cubic-bezier(0.22, 1, 0.36, 1) 0.06s both;
}

.main-nav::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 104px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.94) 0%,
    rgba(255, 255, 255, 0.78) 34%,
    rgba(255, 255, 255, 0.38) 68%,
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.32s ease;
}

body.nav-scrolled .main-nav {
  background: rgba(255, 255, 255, 0.9);
  border-bottom-color: rgba(15, 107, 58, 0.1);
  box-shadow: 0 18px 36px rgba(15, 107, 58, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

body.nav-scrolled .main-nav::before {
  opacity: 0.35;
}

.nav-inner {
  position: relative;
  z-index: 1;
  min-height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: transparent;
}

.brand img {
  width: 178px;
}

.menu-toggle,
.menu-close {
  border: 0;
  background: transparent;
  padding: 0;
  color: var(--green);
  cursor: pointer;
}

.menu-toggle {
  display: none;
  width: 38px;
  height: 38px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.72);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 0;
  border-radius: 999px;
  background: var(--green);
}

.menu {
  display: flex;
  align-items: center;
  gap: 19px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 11px;
  font-weight: 500;
  text-shadow: 0 1px 10px rgba(255, 255, 255, 0.9);
}

.menu li {
  opacity: 0;
  animation: menu-item-reveal 0.44s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.menu li:nth-child(1) {
  animation-delay: 0.18s;
}

.menu li:nth-child(2) {
  animation-delay: 0.24s;
}

.menu li:nth-child(3) {
  animation-delay: 0.3s;
}

.menu li:nth-child(4) {
  animation-delay: 0.36s;
}

.menu li:nth-child(5) {
  animation-delay: 0.42s;
}

.menu a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border-radius: 999px;
  transition:
    color 0.22s ease,
    background-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.menu a img {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
}

.menu a:hover,
.menu a:focus-visible {
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 10px 18px rgba(15, 107, 58, 0.1);
  transform: translateY(-1px);
}

.lang {
  min-width: 35px;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid #d8d8d8;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 12px rgba(255, 255, 255, 0.55);
  color: var(--green);
  text-align: center;
  font-size: 10px;
  font-weight: 700;
}

.mobile-menu[hidden] {
  display: none !important;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 70;
  overflow-y: auto;
  background:
    radial-gradient(circle at top left, rgba(15, 107, 58, 0.08), transparent 34%),
    radial-gradient(circle at bottom right, rgba(227, 213, 31, 0.12), transparent 30%),
    rgba(247, 246, 240, 0.995);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.mobile-menu-inner {
  width: min(100%, 560px);
  min-height: 100dvh;
  min-height: 100vh;
  margin: 0 auto;
  padding: calc(22px + env(safe-area-inset-top, 0px)) 24px calc(34px + env(safe-area-inset-bottom, 0px));
  display: flex;
  flex-direction: column;
}

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(15, 107, 58, 0.1);
}

.mobile-brand img {
  width: 196px;
}

.menu-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 6px;
  background: rgba(15, 107, 58, 0.04);
  font-size: 28px;
  line-height: 1;
}

.mobile-menu-body {
  display: grid;
  gap: 18px;
  padding-top: 28px;
}

.mobile-menu-body a {
  display: block;
  font-size: clamp(24px, 5.4vw, 32px);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.mobile-menu-foot {
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid rgba(15, 107, 58, 0.14);
}

.mobile-menu-socials {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mobile-menu-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(15, 107, 58, 0.08);
}

.mobile-menu-socials img {
  width: 18px;
  height: 18px;
}

.hero,
.promo,
.contact-bg-wrap {
  position: relative;
  overflow: hidden;
}

.hero {
  height: calc(100vh - var(--hero-offset));
  height: calc(100svh - var(--hero-offset));
  min-height: calc(100vh - var(--hero-offset));
  min-height: calc(100svh - var(--hero-offset));
  background: #f6f3ef;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(255 255 255 / 50%);
  pointer-events: none;
  z-index: 2;
}

.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  overflow: hidden;
  transition: opacity 0.6s ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-bg,
.promo-bg,
.contact-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video {
  display: block;
  pointer-events: none;
}

.hero-youtube {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max(100vw, calc((100svh - var(--hero-offset)) * 1.7778));
  height: max(calc(100svh - var(--hero-offset)), 56.25vw);
  max-width: none;
  max-height: none;
  border: 0;
  transform: translate(-50%, -50%);
}

.hero-youtube-shield {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  cursor: default;
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
}

.hero-copy {
  max-width: 430px;
  margin-left: 44px;
  margin-top: -14px;
}

.hero-copy-slide {
  display: none;
}

.hero-copy-slide.is-active {
  display: block;
}

.hero-copy h1 {
  margin: 0;
  font-size: 40px;
  line-height: 1.02;
  font-weight: 700;
}

.hero-copy p {
  margin: 10px 0 24px;
  font-size: 30px;
  line-height: 1.08;
  font-weight: 400;
}

.hero-copy .btn {
  min-height: 44px;
  padding: 12px 26px;
  font-size: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border: 0;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.hero-badge {
  position: absolute;
  top: clamp(60px, 11vh, 110px);
  right: 115px;
  width: 152px;
}

.hero-dots {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 24px;
  display: flex;
  gap: 6px;
  transform: translateX(-50%);
}

.hero-dots span,
.hero-dots button {
  width: 6px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #d3d3d3;
  cursor: pointer;
}

.hero-dots .active,
.hero-dots button.active {
  background: var(--green);
}

.page-banner {
  position: relative;
  min-height: 330px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #183824;
}

.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.14) 34%, rgba(255, 255, 255, 0.54) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.68) 0%, rgba(255, 255, 255, 0.26) 50%, rgba(255, 255, 255, 0.08) 100%);
}

.page-banner-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-banner .container {
  position: relative;
  z-index: 1;
  padding: 96px 0 44px;
}

.page-banner-copy {
  max-width: 620px;
  color: #161616;
}

.page-banner-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--green-dark);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.page-banner-copy h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 0.98;
  font-weight: 700;
}

.page-banner-copy p {
  margin: 14px 0 0;
  max-width: 560px;
  font-size: 17px;
  line-height: 1.72;
}

.products,
.why,
.about {
  padding: 34px 0 48px;
}

.products h2,
.why h2,
.about h2,
.contact-card h2 {
  position: relative;
  margin: 0;
  color: var(--green);
  text-align: center;
  font-size: 26px;
  line-height: 1.1;
  font-weight: 500;
}

.products h2::after,
.why h2::after,
.about h2::after,
.contact-card h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -7px;
  width: 44px;
  height: 2px;
  background: var(--green);
  transform: translateX(-50%);
}

.section-text {
  max-width: 680px;
  margin: 16px auto 0;
  text-align: center;
  font-size: 11px;
  line-height: 1.55;
}

.about-intro-content > p {
  max-width: 680px;
  margin: 16px auto 0;
  text-align: center;
  font-size: 11px;
  line-height: 1.55;
}

.product-strip {
  --card-main: clamp(420px, 58vw, 544px);
  --card-side: clamp(154px, 21vw, 212px);
  --card-back: clamp(104px, 14vw, 146px);
  --shift-side: clamp(190px, 24vw, 248px);
  --shift-back: clamp(322px, 40vw, 410px);
  width: min(980px, 100%);
  margin: 30px auto 0;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  gap: 18px;
  align-items: center;
}

.product-stage {
  position: relative;
  height: 360px;
  perspective: 1600px;
  transform-style: preserve-3d;
  overflow: visible;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}

.product-stage.is-dragging {
  cursor: grabbing;
}

.arrow {
  position: relative;
  z-index: 8;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #111;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.product-card {
  position: absolute;
  top: 50%;
  left: 50%;
  overflow: hidden;
  background: #fff;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
  backface-visibility: hidden;
  will-change: transform, opacity, filter;
  transition:
    transform 0.85s cubic-bezier(0.22, 0.61, 0.36, 1),
    width 0.85s cubic-bezier(0.22, 0.61, 0.36, 1),
    opacity 0.85s ease,
    filter 0.85s ease,
    box-shadow 0.85s ease;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 49, 29, 0.02) 0%, rgba(12, 49, 29, 0.18) 100%);
  pointer-events: none;
}

.product-card img {
  width: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.product-card-cta {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--green-dark);
  font-size: 10px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.product-card.pos-center .product-card-cta {
  opacity: 1;
  transform: translateY(0);
}

.product-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  min-height: 40px;
  padding: 9px 8px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 9px;
  line-height: 1.28;
  font-weight: 500;
  letter-spacing: 0.1em;
  background: rgba(255, 255, 255, 0.98);
}

.product-card.pos-center {
  width: var(--card-main);
  z-index: 5;
  opacity: 1;
  cursor: pointer;
  filter: none;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
  transform: translate(-50%, -50%) translateZ(120px) rotateY(0deg) scale(1);
}

.product-card.pos-center img {
  height: clamp(250px, 34vw, 304px);
}

.product-card.pos-left,
.product-card.pos-right {
  width: var(--card-side);
  z-index: 3;
  opacity: 0.98;
  filter: saturate(0.96);
}

.product-card.pos-left {
  transform: translate(calc(-50% - var(--shift-side)), -50%) translateZ(-40px) rotateY(38deg) scale(0.92);
}

.product-card.pos-right {
  transform: translate(calc(-50% + var(--shift-side)), -50%) translateZ(-40px) rotateY(-38deg) scale(0.92);
}

.product-card.pos-left img,
.product-card.pos-right img {
  height: clamp(180px, 24vw, 228px);
}

.product-card.pos-far-left,
.product-card.pos-far-right {
  width: var(--card-back);
  z-index: 1;
  opacity: 0.62;
  filter: blur(0.1px) saturate(0.88);
}

.product-card.pos-far-left {
  transform: translate(calc(-50% - var(--shift-back)), -50%) translateZ(-180px) rotateY(56deg) scale(0.72);
}

.product-card.pos-far-right {
  transform: translate(calc(-50% + var(--shift-back)), -50%) translateZ(-180px) rotateY(-56deg) scale(0.72);
}

.product-card.pos-far-left img,
.product-card.pos-far-right img {
  height: clamp(136px, 18vw, 170px);
}

.product-card.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) translateZ(-260px) scale(0.52);
}

.product-feature-wrap {
  margin-top: 30px;
}

.product-feature-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 0;
  color: inherit;
  text-decoration: none;
  background:
    radial-gradient(circle at top right, rgba(227, 213, 31, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 246, 240, 0.98) 100%);
  border: 1px solid rgba(15, 107, 58, 0.1);
  box-shadow: 0 22px 52px rgba(15, 107, 58, 0.09);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.product-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 64px rgba(15, 107, 58, 0.14);
}

.product-feature-media {
  position: relative;
  min-height: 360px;
}

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

.product-feature-badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 10px 16px;
  background: rgba(15, 107, 58, 0.92);
  color: #fff;
  font-size: 11px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-feature-body {
  padding: 34px 34px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-feature-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-feature-body h3 {
  margin: 0;
  color: var(--green);
  font-size: 36px;
  line-height: 1.02;
  font-weight: 700;
}

.product-feature-body p {
  margin: 16px 0 0;
  font-size: 15px;
  line-height: 1.86;
}

.product-feature-link {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-dark);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-feature-link::after {
  content: ">";
  font-size: 14px;
  line-height: 1;
}

.script-text {
  max-width: 820px;
  margin: 16px auto 24px;
  text-align: center;
  color: var(--green);
  font-family: "Dancing Script", cursive;
  font-size: 33px;
  line-height: 1.08;
}

.why-grid {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 400px) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.why-story {
  display: flex;
  align-items: center;
}

.why-story-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: center;
}

.why-story h3 {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 30px;
  line-height: 1.12;
  font-weight: 700;
}

.why-story h4 {
  margin: 0 0 14px;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 700;
}

.why-story p + p,
.why-story p + h4 {
  margin-top: 14px;
}

.why-story p {
  margin: 0;
  max-width: 520px;
  font-size: 16px;
  line-height: 1.72;
}

.why-center {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.why-center img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.certs {
  width: min(420px, 100%);
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 8px;
}

.certs img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.certificates-page {
  padding: 70px 0;
  background: #fff;
}

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

.certificate-card {
  display: grid;
  gap: 14px;
  width: 100%;
  padding: 16px;
  border: 0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(33, 49, 43, 0.12);
  color: var(--green);
  cursor: pointer;
  text-align: left;
  font: inherit;
  font-weight: 800;
}

.certificate-pdf-frame {
  display: block;
  width: 100%;
  aspect-ratio: 210 / 297;
  overflow: hidden;
  border-radius: 6px;
  background: #f8fafc;
}

.certificate-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
}

.certificates-empty {
  margin: 0;
  color: var(--green);
  text-align: center;
  font-size: 18px;
  font-weight: 700;
}

.certificate-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 26px;
  background: rgba(10, 18, 14, 0.72);
}

.certificate-modal[hidden] {
  display: none;
}

.certificate-modal-open {
  overflow: hidden;
}

.certificate-modal-dialog {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 12px;
  width: min(100%, 1080px);
  height: min(92vh, 820px);
  padding: 18px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.certificate-modal-dialog h2 {
  margin: 0;
  padding-right: 44px;
  color: var(--green);
  font-size: 22px;
}

.certificate-modal-dialog iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 6px;
  background: #f8fafc;
}

.certificate-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.center-btn {
  display: inline-flex;
  margin: 16px 0 0;
}

.why-story .center-btn {
  align-self: flex-start;
}

.promo {
  height: 206px;
}

.promo-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 34px;
}

.promo-inner > div {
  max-width: 340px;
}

.promo-inner h2 {
  margin: 0;
  font-size: 26px;
  line-height: 1.05;
  font-weight: 700;
}

.promo-inner p {
  margin: 9px 0 17px;
  max-width: 290px;
  font-size: 14px;
  line-height: 1.35;
}

.promo-badge {
  width: 148px;
  margin-right: 70px;
}

.about-grid {
  width: 100%;
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.86fr);
  gap: 28px;
  align-items: start;
}

.about-collage {
  position: relative;
  min-height: 455px;
}

.about-collage .layer {
  position: absolute;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.about-collage .layer img {
  max-width: none;
  height: auto;
}

.about-collage .l1 {
  top: 0;
  left: 2%;
  width: 60%;
}

.about-collage .l2 {
  top: 104px;
  right: 11%;
  width: 40%;
}

.about-collage .l3 {
  bottom: 0;
  left: 16%;
  width: 40%;
}

.about-collage .l1 img {
  width: 136%;
  transform: translate(-5%, -4%);
}

.about-collage .l2 img {
  width: 240%;
  transform: translate(-33%, -20%);
}

.about-collage .l3 img {
  width: 255%;
  transform: translate(-50%, -8%);
}

.about-copy {
  padding-top: 24px;
}

.about-copy h3 {
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 700;
}

.about-copy h4 {
  margin: 0 0 6px;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 700;
}

.about-copy p {
  margin: 0 0 18px;
  max-width: 325px;
  font-size: 11px;
  line-height: 1.65;
}

.page-about .about-grid {
  margin-top: 34px;
  gap: 42px;
}

.page-about .about-collage {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  grid-template-rows: repeat(2, minmax(220px, 1fr));
  gap: 18px;
}

.page-about .about-collage .layer {
  position: relative;
  background: #fff;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(15, 107, 58, 0.08);
}

.page-about .about-collage .layer img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transform: none;
}

.page-about .about-collage .l1 {
  top: auto;
  left: auto;
  width: auto;
  grid-column: 1;
  grid-row: 1 / span 2;
}

.page-about .about-collage .l2 {
  top: auto;
  right: auto;
  width: auto;
  grid-column: 2;
  grid-row: 1;
}

.page-about .about-collage .l3 {
  bottom: auto;
  left: auto;
  width: auto;
  grid-column: 2;
  grid-row: 2;
}

.page-about .about-copy {
  padding-top: 8px;
}

.page-about .about-copy h3 {
  font-size: 30px;
  line-height: 1.14;
  color: var(--green);
}

.page-about .about-copy h4 {
  margin-top: 18px;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--green-dark);
}

.page-about .about-copy p {
  max-width: none;
  font-size: 14px;
  line-height: 1.8;
  color: #2d2d2d;
}

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

.about-panel {
  padding: 22px 20px;
  border: 1px solid rgba(15, 107, 58, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(247, 246, 240, 0.96) 100%);
  box-shadow: 0 14px 34px rgba(15, 107, 58, 0.06);
}

.about-panel h3 {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
}

.about-panel p {
  margin: 0;
  font-size: 13px;
  line-height: 1.72;
}

.about-cert-strip {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.about-cert-strip img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.about-cert-button {
  margin-top: 14px;
}

.page-cta {
  margin-top: 28px;
  padding: 24px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: linear-gradient(135deg, rgba(15, 107, 58, 0.08) 0%, rgba(227, 213, 31, 0.12) 100%);
  border: 1px solid rgba(15, 107, 58, 0.08);
}

.page-cta h3 {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 24px;
  line-height: 1.15;
}

.page-cta p {
  margin: 0;
  max-width: 660px;
  font-size: 14px;
  line-height: 1.72;
}

.products-page {
  padding: 40px 0 72px;
}

.products-highlights {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.products-highlight {
  padding: 22px 20px;
  border: 1px solid rgba(15, 107, 58, 0.1);
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 107, 58, 0.05);
}

.products-highlight h3 {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
}

.products-highlight p {
  margin: 0;
  font-size: 13px;
  line-height: 1.72;
}

.products-page-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.products-page-card {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(15, 107, 58, 0.1);
  background:
    radial-gradient(circle at top right, rgba(227, 213, 31, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 246, 240, 0.98) 100%);
  color: inherit;
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(15, 107, 58, 0.07);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.products-page-card:hover {
  transform: translateY(-8px);
  border-color: rgba(15, 107, 58, 0.18);
  box-shadow: 0 26px 54px rgba(15, 107, 58, 0.12);
}

.products-page-card-media {
  position: relative;
  aspect-ratio: 1.06;
  overflow: hidden;
}

.products-page-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.products-page-card:hover img {
  transform: scale(1.04);
}

.products-page-card-body {
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  min-height: 214px;
}

.products-page-card-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  width: max-content;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(227, 213, 31, 0.18);
  color: var(--green-dark);
  font-size: 10px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.products-page-card h3 {
  margin: 14px 0 10px;
  color: var(--green);
  font-size: 22px;
  line-height: 1.16;
  font-weight: 700;
}

.products-page-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.74;
}

.products-page-card-action {
  margin-top: auto;
  padding-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-dark);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
}

.products-page-card-action::after {
  content: ">";
  font-size: 14px;
  line-height: 1;
}

.blog-page {
  padding: 40px 0 72px;
}

.blog-page-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 24px;
  align-items: stretch;
}

.blog-page-copy h2 {
  position: relative;
  margin: 0;
  color: var(--green);
  text-align: left;
  font-size: 26px;
  line-height: 1.1;
  font-weight: 500;
}

.blog-page-copy h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 44px;
  height: 2px;
  background: var(--green);
}

.blog-page-copy .section-text {
  max-width: 720px;
  margin: 16px 0 0;
  text-align: left;
  font-size: 14px;
  line-height: 1.85;
}

.blog-page-highlight {
  height: 100%;
  padding: 24px 24px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(15, 107, 58, 0.1);
  background:
    radial-gradient(circle at top right, rgba(227, 213, 31, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 246, 240, 0.98) 100%);
  box-shadow: 0 16px 36px rgba(15, 107, 58, 0.07);
}

.blog-page-highlight-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--green);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.blog-page-highlight h3 {
  margin: 0;
  color: var(--green-dark);
  font-size: 22px;
  line-height: 1.18;
}

.blog-page-highlight p {
  margin: 12px 0 0;
  font-size: 13px;
  line-height: 1.72;
}

.blog-grid {
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.blog-card {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(15, 107, 58, 0.1);
  background:
    radial-gradient(circle at top right, rgba(227, 213, 31, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 246, 240, 0.98) 100%);
  color: inherit;
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(15, 107, 58, 0.07);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  border-color: rgba(15, 107, 58, 0.18);
  box-shadow: 0 26px 54px rgba(15, 107, 58, 0.12);
}

.blog-card-media {
  position: relative;
  aspect-ratio: 1.08;
  overflow: hidden;
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.blog-card:hover .blog-card-media img {
  transform: scale(1.04);
}

.blog-card-body {
  padding: 20px 20px 22px;
}

.blog-card-category {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(15, 107, 58, 0.08);
  color: var(--green-dark);
  font-size: 10px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-card h3 {
  margin: 14px 0 10px;
  color: var(--green);
  font-size: 22px;
  line-height: 1.16;
  font-weight: 700;
}

.blog-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.74;
}

.blog-card-action {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-dark);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
}

.blog-card-action::after {
  content: ">";
  font-size: 14px;
  line-height: 1;
}

.home-blog {
  padding: 8px 0 52px;
}

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

.home-blog-head h2 {
  position: relative;
  margin: 0;
  color: var(--green);
  font-size: 26px;
  line-height: 1.1;
  font-weight: 500;
}

.home-blog-head h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 44px;
  height: 2px;
  background: var(--green);
}

.home-blog-head p {
  max-width: 640px;
  margin: 14px 0 0;
  font-size: 13px;
  line-height: 1.75;
}

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

.home-blog-card {
  display: block;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  border: 1px solid rgba(15, 107, 58, 0.1);
  background:
    radial-gradient(circle at top right, rgba(227, 213, 31, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 246, 240, 0.98) 100%);
  box-shadow: 0 14px 34px rgba(15, 107, 58, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.home-blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(15, 107, 58, 0.16);
  box-shadow: 0 22px 44px rgba(15, 107, 58, 0.1);
}

.home-blog-card-media {
  aspect-ratio: 1.16;
  overflow: hidden;
}

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

.home-blog-card:hover .home-blog-card-media img {
  transform: scale(1.04);
}

.home-blog-card-body {
  min-height: 184px;
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
}

.home-blog-card-category {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(15, 107, 58, 0.08);
  color: var(--green-dark);
  font-size: 9px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-blog-card h3 {
  margin: 12px 0 8px;
  color: var(--green);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
}

.home-blog-card p {
  margin: 0;
  font-size: 12px;
  line-height: 1.7;
}

.home-blog-card-action {
  margin-top: auto;
  padding-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--green-dark);
  font-size: 11px;
  line-height: 1.2;
  font-weight: 700;
}

.home-blog-card-action::after {
  content: ">";
  font-size: 13px;
  line-height: 1;
}

.product-detail {
  padding: 42px 0 76px;
}

.product-detail-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 28px;
  align-items: center;
}

.product-detail-visual {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  background:
    radial-gradient(circle at top left, rgba(227, 213, 31, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 243, 236, 0.98) 100%);
  box-shadow: 0 24px 56px rgba(15, 107, 58, 0.11);
}

.product-detail-visual::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  pointer-events: none;
}

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

.product-detail-float {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 10px 16px;
  background: rgba(15, 107, 58, 0.92);
  color: #fff;
  font-size: 12px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-detail-overview {
  position: relative;
  padding: 30px 32px;
  background:
    radial-gradient(circle at top right, rgba(227, 213, 31, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 246, 240, 0.98) 100%);
  border: 1px solid rgba(15, 107, 58, 0.08);
  box-shadow: 0 18px 42px rgba(15, 107, 58, 0.07);
}

.product-detail-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.product-detail-overview h2,
.product-detail-related-head h3 {
  margin: 0;
  color: var(--green);
  font-size: 34px;
  line-height: 1.04;
  font-weight: 700;
}

.product-detail-overview p {
  margin: 16px 0 0;
  font-size: 15px;
  line-height: 1.9;
}

.product-detail-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.product-detail-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-dark);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-detail-link::after {
  content: ">";
  font-size: 14px;
  line-height: 1;
}

.product-detail-stats {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.product-detail-stat {
  padding: 22px 18px;
  background: #fff;
  border: 1px solid rgba(15, 107, 58, 0.08);
  box-shadow: 0 14px 34px rgba(15, 107, 58, 0.05);
}

.product-detail-stat span {
  display: block;
  color: #5f675f;
  font-size: 11px;
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-detail-stat strong {
  display: block;
  margin-top: 10px;
  color: var(--green-dark);
  font-size: 20px;
  line-height: 1.18;
}

.product-detail-body {
  margin-top: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 22px;
  align-items: start;
}

.product-detail-story,
.product-detail-specs {
  padding: 28px 28px 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 246, 240, 0.98) 100%);
  border: 1px solid rgba(15, 107, 58, 0.08);
  box-shadow: 0 16px 36px rgba(15, 107, 58, 0.06);
}

.product-detail-story h3,
.product-detail-specs h3,
.product-detail-benefit h3 {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 22px;
  line-height: 1.16;
  font-weight: 700;
}

.product-detail-story p {
  margin: 0;
  font-size: 14px;
  line-height: 1.86;
}

.product-detail-story p + p {
  margin-top: 12px;
}

.product-detail-spec-list {
  display: grid;
  gap: 14px;
}

.product-detail-spec-item {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(15, 107, 58, 0.08);
}

.product-detail-spec-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.product-detail-spec-item span {
  display: block;
  color: #667066;
  font-size: 11px;
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-detail-spec-item strong {
  display: block;
  margin-top: 8px;
  color: #212121;
  font-size: 15px;
  line-height: 1.6;
}

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

.product-detail-benefit {
  padding: 24px 22px;
  background: #fff;
  border: 1px solid rgba(15, 107, 58, 0.08);
  box-shadow: 0 14px 34px rgba(15, 107, 58, 0.05);
}

.product-detail-benefit p,
.product-detail-related-body p {
  margin: 0;
  font-size: 13px;
  line-height: 1.78;
}

.product-detail-related {
  margin-top: 32px;
}

.product-detail-related-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}

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

.product-detail-related-card {
  display: block;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 246, 240, 0.98) 100%);
  border: 1px solid rgba(15, 107, 58, 0.08);
  box-shadow: 0 16px 36px rgba(15, 107, 58, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.product-detail-related-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(15, 107, 58, 0.1);
}

.product-detail-related-media {
  aspect-ratio: 1.05;
  overflow: hidden;
}

.product-detail-related-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-related-body {
  padding: 18px 18px 20px;
}

.product-detail-related-body span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(227, 213, 31, 0.18);
  color: var(--green-dark);
  font-size: 10px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-detail-related-body h4 {
  margin: 14px 0 10px;
  color: var(--green);
  font-size: 22px;
  line-height: 1.14;
  font-weight: 700;
}

.products-page-grid.products-page-grid-single {
  grid-template-columns: minmax(0, 540px);
  justify-content: center;
}

body.page-product-detail .product-detail {
  padding: 42px 0 76px;
}

body.page-product-detail .product-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 28px;
  align-items: start;
}

body.page-product-detail .product-detail-media-column {
  position: relative;
}

body.page-product-detail .product-detail-media-sticky {
  position: static;
}

body.page-product-detail .product-detail-video-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1.08;
  background:
    radial-gradient(circle at top left, rgba(227, 213, 31, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 243, 236, 0.98) 100%);
  border: 1px solid rgba(15, 107, 58, 0.08);
  box-shadow: 0 20px 52px rgba(15, 107, 58, 0.1);
}

body.page-product-detail .product-detail-video-card video,
body.page-product-detail .product-detail-video-card iframe {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1.08;
  border: 0;
  object-fit: cover;
}

body.page-product-detail .product-detail-video-card video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  max-width: none;
  max-height: none;
  transform: translate(-50%, -50%);
}

body.page-product-detail .product-detail-video-card iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 132%;
  height: 132%;
  max-width: none;
  max-height: none;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

body.page-product-detail .product-detail-youtube-shield {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  cursor: default;
}

body.page-product-detail .product-detail-gallery {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

body.page-product-detail .product-detail-gallery-item {
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #f4f4ee;
  box-shadow: 0 14px 34px rgba(15, 107, 58, 0.07);
}

body.page-product-detail .product-detail-gallery-item button {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

body.page-product-detail .product-detail-gallery-item.is-offset {
  transform: translateY(28px);
}

body.page-product-detail .product-detail-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-lightbox {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(8, 16, 12, 0.82);
}

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

.product-lightbox-open {
  overflow: hidden;
}

.product-lightbox-stage {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 1120px);
  max-height: 88vh;
}

.product-lightbox-stage img {
  display: block;
  max-width: 100%;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
}

.product-lightbox-arrow {
  position: absolute;
  top: 50%;
  z-index: 1;
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  color: var(--green);
  cursor: pointer;
  font-size: 42px;
  line-height: 1;
  transform: translateY(-50%);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.product-lightbox-prev {
  left: 14px;
}

.product-lightbox-next {
  right: 14px;
}

.product-lightbox.is-single .product-lightbox-arrow {
  display: none;
}

.product-lightbox-close {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  color: var(--green);
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

body.page-product-detail .product-detail-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: sticky;
  top: calc(var(--nav-height) + 26px);
  align-self: start;
}

body.page-product-detail .product-detail-overview,
body.page-product-detail .product-detail-story,
body.page-product-detail .product-detail-specs {
  padding: 30px 32px;
}

body.page-product-detail .product-detail-overview {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

body.page-product-detail .product-detail-overview h2 {
  margin: 0;
  color: var(--green);
  font-size: 34px;
  line-height: 1.04;
  font-weight: 700;
}

body.page-product-detail .product-detail-overview p {
  margin: 16px 0 0;
  font-size: 15px;
  line-height: 1.9;
}

body.page-product-detail .product-detail-description {
  padding: 24px 26px 28px;
  background: var(--surface);
  box-shadow: var(--surface-shadow-soft);
  display: grid;
  gap: 12px;
}

body.page-product-detail .product-detail-description h3 {
  margin: 0 0 2px;
  color: var(--green);
  font-size: 22px;
  line-height: 1.16;
  font-weight: 700;
}

body.page-product-detail .product-detail-description p {
  margin: 0;
  font-size: 15px;
  line-height: 1.84;
}

body.page-product-detail .product-detail-stats {
  margin-top: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.page-product-detail .product-detail-body {
  margin-top: 0;
  display: contents;
}

body.page-product-detail .product-detail-benefits {
  margin-top: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.page-blog-detail .blog-detail {
  padding: 34px 0 76px;
}

body.page-blog-detail .blog-detail-article {
  overflow: hidden;
  border: 1px solid rgba(15, 107, 58, 0.1);
  background:
    radial-gradient(circle at top right, rgba(227, 213, 31, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 246, 240, 0.98) 100%);
  box-shadow: 0 18px 42px rgba(15, 107, 58, 0.08);
}

body.page-blog-detail .blog-detail-cover {
  aspect-ratio: 1.85;
  overflow: hidden;
}

body.page-blog-detail .blog-detail-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.page-blog-detail .blog-detail-body {
  padding: 30px 32px 34px;
}

body.page-blog-detail .blog-detail-head {
  display: grid;
  gap: 16px;
}

body.page-blog-detail .blog-detail-meta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px 20px;
}

body.page-blog-detail .blog-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

body.page-blog-detail .blog-detail-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(15, 107, 58, 0.08);
  color: var(--green-dark);
  font-size: 10px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.page-blog-detail .blog-detail-share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

body.page-blog-detail .blog-detail-share-label {
  color: var(--green-dark);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
}

body.page-blog-detail .blog-detail-share a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(15, 107, 58, 0.08);
  color: var(--green-dark);
  font-size: 11px;
  line-height: 1.2;
  font-weight: 700;
}

body.page-blog-detail .blog-detail-title {
  margin: 0;
  color: var(--green);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.02;
  font-weight: 700;
}

body.page-blog-detail .blog-detail-lead {
  margin: 0;
  color: var(--green-dark);
  font-size: 18px;
  line-height: 1.82;
}

body.page-blog-detail .blog-detail-highlights {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

body.page-blog-detail .blog-detail-highlight {
  padding: 18px 16px;
  background: #fff;
}

body.page-blog-detail .blog-detail-highlight span {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 11px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.page-blog-detail .blog-detail-highlight strong {
  display: block;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 700;
}

body.page-blog-detail .blog-detail-section {
  margin-top: 26px;
}

body.page-blog-detail .blog-detail-section h2 {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
}

body.page-blog-detail .blog-detail-section p {
  margin: 0;
  font-size: 15px;
  line-height: 1.84;
}

body.page-blog-detail .blog-detail-section p + p {
  margin-top: 12px;
}

body.page-blog-detail .blog-detail-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-dark);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
}

body.page-blog-detail .blog-detail-link::after {
  content: ">";
  font-size: 14px;
  line-height: 1;
}

body.page-blog-detail .blog-related {
  margin-top: 28px;
}

body.page-blog-detail .blog-related-head {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

body.page-blog-detail .blog-related-head h3 {
  margin: 0;
  color: var(--green);
  font-size: 24px;
  line-height: 1.15;
  font-weight: 700;
}

body.page-blog-detail .blog-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.contact {
  padding-bottom: 88px;
}

.contact-bg-wrap {
  height: 340px;
}

.contact .container {
  margin-top: -172px;
}

.contact-card {
  background: var(--surface);
  box-shadow: var(--surface-shadow-soft);
  padding: 32px 34px 34px;
  position: relative;
  z-index: 1;
}

.contact-intro {
  max-width: 560px;
  margin: 18px auto 0;
  text-align: center;
  font-size: 12px;
  line-height: 1.65;
}

.form-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.form-grid input,
.form-grid textarea {
  width: 100%;
  border: 0;
  background: var(--surface);
  box-shadow: 0 4px 14px rgba(15, 107, 58, 0.035);
  color: #1b1b1b;
  font-size: 11px;
  padding: 9px 11px;
}

.form-grid textarea {
  grid-column: span 2;
  min-height: 58px;
  resize: none;
}

.check {
  display: block;
  margin-top: 11px;
  font-size: 10px;
  line-height: 1.45;
}

.check input {
  margin-right: 6px;
}

.contact-card .btn {
  margin-top: 16px;
}

.form-notice {
  margin: 0 0 16px;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
}

.form-notice.is-success {
  background: #ecfdf3;
  color: #027a48;
}

.form-notice.is-error {
  background: #fff1f1;
  color: #9f1239;
}

.contact-page {
  padding: 34px 0 40px;
}

.contact-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 22px;
  align-items: stretch;
}

.contact-page-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(15, 107, 58, 0.08);
  color: var(--green-dark);
  font-size: 10px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-page-link {
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-dark);
}

.contact-page-link::after {
  content: " ->";
}

.contact-page-info-grid {
  display: grid;
  gap: 18px;
}

.contact-page-info-card {
  padding: 22px 24px 24px;
}

.contact-page-info-card span {
  display: inline-block;
  color: rgba(21, 21, 21, 0.6);
  font-size: 10px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-page-info-card strong {
  display: block;
  margin: 10px 0 12px;
  font-size: 20px;
  line-height: 1.35;
  color: #143524;
}

.contact-page-info-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.72;
  color: rgba(21, 21, 21, 0.76);
}

.contact-page-map-shell {
  padding: 24px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.contact-page-map-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.contact-page-map-head h2 {
  margin: 14px 0 0;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.08;
  color: #143524;
}

.contact-page-map-frame {
  flex: 1;
  overflow: hidden;
  min-height: 420px;
  background: var(--surface);
}

.contact-page-map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.page-contact .contact {
  padding-top: 0;
}

.page-contact .contact-card {
  max-width: 960px;
  margin: 0 auto;
}

.product-feature-card,
.about-panel,
.page-cta,
.products-highlight,
.products-page-card,
.blog-page-highlight,
.blog-card,
.home-blog-card,
.product-detail-visual,
.product-detail-overview,
.product-detail-stat,
.product-detail-story,
.product-detail-specs,
.product-detail-benefit,
.product-detail-related-card,
body.page-product-detail .product-detail-video-card,
body.page-product-detail .product-detail-gallery-item,
body.page-product-detail .product-detail-overview,
body.page-blog-detail .blog-detail-article,
body.page-blog-detail .blog-detail-highlight,
.contact-card,
.contact-page-map-shell,
.contact-page-info-card {
  background: var(--surface);
  border: 0;
  box-shadow: var(--surface-shadow-soft);
}

.product-feature-card:hover,
.products-page-card:hover,
.blog-card:hover,
.home-blog-card:hover,
.product-detail-related-card:hover {
  box-shadow: var(--surface-shadow-soft-hover);
}

.products-page-card,
.blog-card,
.home-blog-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.product-detail-visual::before {
  display: none;
}

.reference-carousel {
  overflow: hidden;
  padding: 22px 0;
}

.reference-carousel-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: reference-scroll 34s linear infinite;
}

.reference-carousel:hover .reference-carousel-track {
  animation-play-state: paused;
}

.reference-logo-card {
  display: grid;
  place-items: center;
  width: 190px;
  height: 82px;
  flex: 0 0 auto;
  padding: 14px 18px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(33, 49, 43, 0.07);
  align-content: center;
}

.reference-logo-card img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
}

.site-footer {
  background: var(--green);
  color: #fff;
}

.footer-main {
  padding: 40px 0 34px;
  display: grid;
  grid-template-columns: 170px minmax(0, 1.45fr) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.footer-brand {
  display: inline-flex;
}

.footer-brand img {
  width: 145px;
}

.footer-title {
  margin: 0 0 10px;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  margin-bottom: 4px;
  font-size: 11px;
  line-height: 1.5;
}

.footer-col p {
  margin: 0 0 4px;
  font-size: 10px;
  line-height: 1.55;
}

.footer-contact {
  max-width: 460px;
}

.footer-contact-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}

.footer-contact-inline a {
  display: inline;
  margin-bottom: 0;
}

.footer-contact-inline span {
  font-size: 11px;
  line-height: 1.5;
}

.footer-address-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.footer-address-inline span {
  font-size: 10px;
  line-height: 1.55;
}

.footer-col.links {
  padding-top: 2px;
}

.footer-links-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  align-items: center;
}

.footer-col.links a {
  margin-bottom: 0;
}

.footer-bottom {
  padding: 8px 0;
  background: #fff;
  color: #111;
  font-size: 10px;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-socials-bottom {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-socials-bottom img {
  width: 18px;
  height: 18px;
}

@keyframes header-reveal {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes reference-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes menu-item-reveal {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .topbar,
  .main-nav,
  .menu li {
    animation: none;
  }

  .menu li {
    opacity: 1;
  }
}

@media (max-width: 1024px) {
  .hero {
    height: calc(100vh - var(--hero-offset));
    height: calc(100svh - var(--hero-offset));
    min-height: calc(100vh - var(--hero-offset));
    min-height: calc(100svh - var(--hero-offset));
  }

  .hero-badge,
  .promo-badge {
    width: 128px;
    margin-right: 20px;
    right: 40px;
  }

  .product-strip {
    --card-main: clamp(360px, 54vw, 470px);
    --card-side: clamp(138px, 19vw, 184px);
    --card-back: clamp(92px, 12vw, 124px);
    --shift-side: clamp(166px, 23vw, 214px);
    --shift-back: clamp(276px, 35vw, 338px);
    grid-template-columns: 36px minmax(0, 1fr) 36px;
    gap: 14px;
  }

  .product-stage {
    height: 318px;
  }

  .why-grid {
    grid-template-columns: minmax(0, 340px) minmax(0, 1fr);
    gap: 24px;
  }

  .why-story {
    min-height: 470px;
  }

  .why-center {
    min-height: 470px;
  }
}

@media (max-width: 900px) {
  :root {
    --topbar-height: 48px;
    --nav-height: 74px;
  }

  .topbar-inner,
  .top-left {
    flex-wrap: wrap;
    justify-content: center;
  }

  .top-right,
  .menu,
  .lang {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-inner {
    min-height: 74px;
    justify-content: space-between;
    gap: 12px;
  }

  .brand {
    width: auto;
  }

  .hero {
    height: calc(100vh - var(--hero-offset));
    height: calc(100svh - var(--hero-offset));
    min-height: calc(100vh - var(--hero-offset));
    min-height: calc(100svh - var(--hero-offset));
  }

  .hero-copy {
    margin-left: 24px;
    max-width: 360px;
  }

  .page-banner {
    min-height: 276px;
  }

  .page-banner .container {
    padding: 82px 0 38px;
  }

  .page-banner-copy p {
    font-size: 15px;
  }

  .page-about .about-collage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  .page-about .about-collage .l1,
  .page-about .about-collage .l2,
  .page-about .about-collage .l3 {
    grid-column: auto;
    grid-row: auto;
    min-height: 220px;
  }

  .hero-copy h1 {
    font-size: 30px;
  }

  .hero-copy p {
    font-size: 24px;
  }

  .hero-badge,
  .promo-badge {
    display: none;
  }

  .why-grid,
  .about-grid,
  .footer-main,
  .form-grid,
  .contact-page-layout {
    grid-template-columns: 1fr;
  }

  .about-panels {
    grid-template-columns: 1fr;
  }

  .blog-page-intro,
  .product-detail-hero,
  .product-detail-body {
    grid-template-columns: 1fr;
  }

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

  .products-highlights,
  .product-detail-stats,
  .product-detail-benefits,
  .product-detail-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-story {
    min-height: 0;
  }

  .why-story-inner {
    min-height: 0;
  }

  .footer-main {
    gap: 20px;
    text-align: center;
  }

  .footer-brand {
    justify-self: center;
  }

  .reference-logo-card {
    width: 150px;
    height: 70px;
  }

  .footer-contact {
    max-width: none;
  }

  .footer-contact-inline {
    justify-content: center;
  }

  .footer-address-inline {
    justify-content: center;
  }

  .footer-links-row {
    justify-content: center;
    gap: 10px 16px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .page-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-blog-head {
    flex-direction: column;
    align-items: flex-start;
  }

  body.page-blog-detail .blog-related-grid,
  body.page-blog-detail .blog-detail-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-detail-related-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-strip {
    --card-main: min(100%, 370px);
    --card-side: 122px;
    --card-back: 78px;
    --shift-side: 128px;
    --shift-back: 196px;
    width: min(100%, 540px);
    grid-template-columns: 30px minmax(0, 1fr) 30px;
    gap: 8px;
  }

  .product-stage {
    height: 276px;
  }

  .product-card.pos-left img,
  .product-card.pos-right img {
    height: 150px;
  }

  .product-card.pos-far-left img,
  .product-card.pos-far-right img {
    height: 108px;
  }

  .why-center {
    order: -1;
    max-width: 360px;
    min-height: 0;
    margin: 0 auto 8px;
  }

  .why-center img {
    height: auto;
    aspect-ratio: 0.78;
  }

  .why-story h3 {
    font-size: 26px;
  }

  .why-story h4 {
    font-size: 17px;
  }

  .why-story p {
    max-width: none;
    font-size: 15px;
  }

  .about-collage {
    min-height: 340px;
  }

  .about-copy {
    padding-top: 0;
  }

  .contact .container {
    margin-top: -110px;
  }

  .contact-page-map-shell {
    padding: 24px 24px 28px;
  }

  .contact-page-map-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .form-grid textarea {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  :root {
    --topbar-height: 84px;
    --nav-height: 68px;
  }

  .container {
    width: min(var(--container-width), calc(100% - 28px));
  }

  .topbar-inner {
    min-height: 44px;
    font-size: 10px;
    gap: 8px;
  }

  .page-banner {
    min-height: 228px;
  }

  .page-banner .container {
    padding: 76px 0 30px;
  }

  .page-banner-kicker {
    font-size: 10px;
  }

  .page-banner-copy h1 {
    font-size: 32px;
  }

  .page-banner-copy p {
    font-size: 14px;
    line-height: 1.65;
  }

  .page-about .about-collage {
    grid-template-columns: 1fr;
  }

  .products-page {
    padding: 34px 0 58px;
  }

  .contact-page {
    padding: 34px 0;
  }

  .home-blog {
    padding: 4px 0 44px;
  }

  .blog-page {
    padding: 34px 0 58px;
  }

  .product-detail,
  body.page-blog-detail .blog-detail {
    padding: 34px 0 58px;
  }

  .products-highlight,
  .products-page-card-body,
  .home-blog-card-body,
  .blog-card-body,
  .product-detail-description,
  .product-detail-overview,
  .product-detail-story,
  .product-detail-specs,
  .product-detail-benefit,
  .product-detail-related-body {
    padding: 18px;
  }

  .home-blog-head h2,
  .page-cta h3,
  .product-detail-description h3,
  .product-detail-overview h2,
  .product-detail-related-head h3 {
    font-size: 22px;
  }

  .home-blog-head p,
  .page-cta p,
  .product-detail-description p,
  .product-detail-overview p,
  .product-detail-story p,
  .product-detail-spec-item strong {
    font-size: 13px;
    line-height: 1.72;
  }

  .home-blog-grid,
  .blog-grid,
  .products-page-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  body.page-blog-detail .blog-detail-body {
    padding: 20px 18px 22px;
  }

  body.page-blog-detail .blog-detail-meta-row {
    flex-direction: column;
    align-items: flex-start;
  }

  body.page-blog-detail .blog-detail-title {
    font-size: 28px;
  }

  body.page-blog-detail .blog-detail-lead,
  body.page-blog-detail .blog-detail-section p {
    font-size: 14px;
    line-height: 1.76;
  }

  body.page-blog-detail .blog-detail-highlights,
  body.page-blog-detail .blog-related-grid {
    grid-template-columns: 1fr;
  }

  .products-highlights,
  .product-detail-stats,
  .product-detail-benefits,
  .product-detail-related-grid {
    grid-template-columns: 1fr;
  }

  .product-detail-visual {
    min-height: 320px;
  }

  .page-about .about-collage .l1,
  .page-about .about-collage .l2,
  .page-about .about-collage .l3 {
    min-height: 200px;
  }

  .top-left {
    width: 100%;
    gap: 10px;
    justify-content: center;
  }

  .nav-inner {
    min-height: 68px;
  }

  .brand img,
  .mobile-brand img {
    width: 164px;
  }

  .hero {
    height: calc(100vh - var(--hero-offset));
    height: calc(100svh - var(--hero-offset));
    min-height: calc(100vh - var(--hero-offset));
    min-height: calc(100svh - var(--hero-offset));
  }

  .product-strip {
    --card-main: min(100%, 312px);
    --card-side: 92px;
    --card-back: 0px;
    --shift-side: 96px;
    --shift-back: 140px;
    grid-template-columns: 26px minmax(0, 1fr) 26px;
    gap: 4px;
  }

  .product-stage {
    height: 236px;
  }

  .arrow {
    font-size: 24px;
  }

  .product-card h3 {
    padding: 7px 6px 8px;
    font-size: 8px;
    letter-spacing: 0.12em;
  }

  .product-card.pos-center img {
    height: 190px;
  }

  .product-card.pos-left,
  .product-card.pos-right {
    opacity: 0.92;
  }

  .product-card.pos-left {
    transform: translate(calc(-50% - var(--shift-side)), -50%) translateZ(-26px) rotateY(34deg) scale(0.88);
  }

  .product-card.pos-right {
    transform: translate(calc(-50% + var(--shift-side)), -50%) translateZ(-26px) rotateY(-34deg) scale(0.88);
  }

  .product-card.pos-left img,
  .product-card.pos-right img {
    height: 116px;
  }

  .product-card.pos-far-left,
  .product-card.pos-far-right {
    opacity: 0;
    pointer-events: none;
  }

  .why-story h3 {
    font-size: 22px;
  }

  .why-story h4 {
    font-size: 16px;
  }

  .why-story p {
    font-size: 14px;
    line-height: 1.64;
  }

  .certs {
    justify-content: center;
    width: 100%;
  }

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

  .certificate-modal {
    padding: 12px;
  }

  .certificate-modal-dialog {
    height: 88vh;
    padding: 14px;
  }

  .why-story .center-btn {
    align-self: center;
  }

  .hero-copy {
    max-width: 300px;
    margin-left: 20px;
  }

  .hero-copy h1 {
    font-size: 28px;
  }

  .hero-copy p {
    margin-bottom: 20px;
    font-size: 20px;
  }

  .hero-copy .btn {
    min-height: 40px;
    padding: 10px 22px;
    font-size: 13px;
  }

  .page-about .about-copy h3 {
    font-size: 24px;
  }

  .page-about .about-copy p,
  .about-panel p,
  .page-cta p {
    font-size: 13px;
  }

  .products h2,
  .why h2,
  .about h2,
  .contact-card h2,
  .blog-page-copy h2 {
    font-size: 23px;
  }

  .contact-intro {
    font-size: 11px;
  }

  .script-text {
    font-size: 27px;
  }

  .promo-inner {
    padding: 0 18px;
  }

  .promo-inner h2 {
    font-size: 22px;
  }

  .about-collage {
    min-height: 300px;
  }

  .contact-card {
    padding: 24px 18px 26px;
  }

  .contact-page-map-shell,
  .contact-page-info-card {
    padding: 18px;
  }

  .contact-page-info-card p {
    font-size: 13px;
    line-height: 1.72;
  }

  .contact-page-info-card strong {
    font-size: 18px;
  }

  .contact-page-map-head h2 {
    font-size: 24px;
  }

  .contact-page-map-frame,
  .contact-page-map-frame iframe {
    min-height: 300px;
  }

  .contact-bg-wrap {
    height: 250px;
  }

  .contact .container {
    margin-top: -82px;
  }

  .mobile-menu-inner {
    padding: calc(18px + env(safe-area-inset-top, 0px)) 18px calc(28px + env(safe-area-inset-bottom, 0px));
  }

  .mobile-menu-body a {
    font-size: clamp(21px, 7.2vw, 28px);
  }

  .menu-toggle,
  .menu-close {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 1100px) {
  body.page-product-detail .product-detail-layout {
    grid-template-columns: 1fr;
  }

  body.page-product-detail .product-detail-media-sticky {
    position: static;
  }

  body.page-product-detail .product-detail-content {
    position: static;
  }

  body.page-product-detail .product-detail-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .product-feature-card {
    grid-template-columns: 1fr;
  }

  .product-feature-media {
    min-height: 260px;
  }

  .product-feature-body {
    padding: 22px 18px 24px;
  }

  .product-feature-body h3 {
    font-size: 28px;
  }

  .product-feature-body p {
    font-size: 13px;
    line-height: 1.74;
  }

  body.page-product-detail .product-detail-video-card video,
  body.page-product-detail .product-detail-video-card iframe {
    aspect-ratio: 1 / 1;
  }

  body.page-product-detail .product-detail-video-card {
    aspect-ratio: 1 / 1;
  }

  body.page-product-detail .product-detail-gallery {
    gap: 10px;
  }

  body.page-product-detail .product-detail-gallery-item.is-offset {
    transform: none;
  }

  .product-lightbox {
    padding: 14px;
  }

  .product-lightbox-close {
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
  }

  .product-lightbox-arrow {
    width: 40px;
    height: 40px;
    font-size: 32px;
  }

  .product-lightbox-prev {
    left: 8px;
  }

  .product-lightbox-next {
    right: 8px;
  }

  body.page-product-detail .product-detail-overview,
  body.page-product-detail .product-detail-story,
  body.page-product-detail .product-detail-specs,
  body.page-product-detail .product-detail-benefit {
    padding: 18px;
  }

  body.page-product-detail .product-detail-overview h2 {
    font-size: 26px;
  }

  body.page-product-detail .product-detail-overview p,
  body.page-product-detail .product-detail-story p,
  body.page-product-detail .product-detail-spec-item strong {
    font-size: 13px;
    line-height: 1.72;
  }

  body.page-product-detail .product-detail-stats,
  body.page-product-detail .product-detail-benefits {
    grid-template-columns: 1fr;
  }
}
