:root {
  --green: #9dc42a;
  --black: #3c3c3b;
  --gray: #efeeee;

  --white: #ffffff;

  --text: var(--black);
  --text-invert: var(--white);

  --font-sans: "Century Gothic", "Segoe UI", Arial, sans-serif;
  --font-display: "Dahn Da", var(--font-sans);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 22px;

  --shadow-hover: 0 8px 20px rgba(0, 0, 0, 0.25);
}

@font-face {
  font-family: "Dahn Da";
  src:
    url("../fonts/DanhDa-Bold.woff2") format("woff2"),
    url("../fonts/DanhDa-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--text);
  background: var(--white);
}

.c-productElectric {
  --green: #0084cc;
}

a,
a:visited {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:focus {
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

/* =========================
   Buttons (global)
========================= */

.btn,
.product-info__cta,
.c-downloads__btn,
.c-supportcta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 12px 18px;
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--green);
  color: var(--text-invert);
  cursor: pointer;

  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-decoration: none;

  transition:
    transform 160ms ease,
    filter 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease,
    color 160ms ease;
}

.btn:hover,
.product-info__cta:hover,
.c-downloads__btn:hover,
.c-supportcta__btn:hover {
  transform: translateY(-1px);
  filter: brightness(0.95);
  box-shadow: var(--shadow-hover);
  color: var(--black);
}

.btn:visited,
.product-info__cta:visited,
.c-downloads__btn:visited,
.c-supportcta__btn:visited {
  color: var(--text-invert);
}

.btn:hover:visited,
.product-info__cta:hover:visited,
.c-downloads__btn:hover:visited,
.c-supportcta__btn:hover:visited {
  color: var(--black);
}

/* =========================
   Product Info
========================= */

.product-info {
  position: relative;
  height: 500px;
  background-color: var(--black);
  overflow: hidden;
}

.product-info__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.35;
}

.product-info__container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}

.product-info__media {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
}

.product-info__content {
  color: var(--text-invert);
}

.product-info__kpi {
  position: relative;
  display: inline-flex;
  align-self: flex-start;
  padding: 8px 0;

  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--green);
}

.product-info__kpi::before,
.product-info__kpi::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  height: 2px;
  background-color: var(--green);
}

.product-info__kpi::before {
  top: 12px;
}

.product-info__kpi::after {
  bottom: 0;
}

.product-info__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 90px;
  margin: 0 0 12px;
}

.product-info__text {
  font-size: 28px;
  line-height: 1.4;
  margin-bottom: 32px;
  max-width: 420px;
  font-weight: 700;
}

.product-info__cta {
  height: 44px;
  padding: 0 28px;
  border-radius: var(--radius-sm);
}

/* =========================
   404
========================= */

.c-error404 {
  background:
    radial-gradient(circle at top, rgba(157, 196, 42, 0.14), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f6f7f2 100%);
}

.c-error404__shell {
  width: min(1120px, 100%);
  min-height: clamp(420px, 68vh, 760px);
  margin: 0 auto;
  padding: clamp(56px, 9vw, 120px) 24px;
  display: grid;
  place-items: center;
}

.c-error404__card {
  width: min(560px, 100%);
  padding: clamp(32px, 5vw, 56px);
  border: 1px solid rgba(60, 60, 59, 0.1);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 48px rgba(60, 60, 59, 0.08);
  text-align: center;
}

.c-error404__code {
  margin: 0 0 14px;
  color: var(--green);
  font-family: var(--font-display);
  font-size: clamp(54px, 10vw, 112px);
  line-height: 0.9;
  letter-spacing: 0.06em;
}

.c-error404__title {
  margin: 0;
  color: var(--black);
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
}

.c-error404__text {
  max-width: 30ch;
  margin: 20px auto 0;
  color: rgba(60, 60, 59, 0.78);
  font-size: 17px;
  line-height: 1.6;
}

.c-error404__action {
  min-width: 180px;
  margin-top: 32px;
}

@media (max-width: 640px) {
  .c-error404__card {
    padding: 28px 22px;
  }

  .c-error404__text {
    font-size: 15px;
  }

  .c-error404__action {
    width: 100%;
  }
}

/* =========================
   Gallery
========================= */

.product-gallery {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  overflow: visible;
}

.product-gallery__main {
  max-width: 100%;
  max-height: 420px;
  object-fit: contain;
  display: block;
}

.product-gallery__thumbs {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.product-gallery__thumb {
  width: 64px;
  height: 48px;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.6;
  border: 2px solid transparent;
  transition:
    opacity 0.2s ease,
    border-color 0.2s ease;
  border-radius: 3px;
}

.product-gallery__thumb:hover {
  opacity: 1;
}

.product-gallery__thumb.is-active {
  opacity: 1;
  border-color: var(--green);
}

@media (min-width: 1025px) {
  .product-info__container {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: center;
  }

  .product-info__media {
    height: 100%;
    align-items: center;
    overflow: hidden;
  }

  .product-gallery {
    height: 100%;
    width: 100%;
    align-items: center;
    justify-content: center;
  }

  .product-gallery__main {
    width: auto;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: contain;
  }

  .product-info__content {
    align-self: center;
    justify-self: end;
  }

  .product-gallery {
    padding-left: 96px;
  }

  .product-gallery__thumbs {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
}

@media (max-width: 1024px) {
  .product-info {
    height: auto;
    padding: 80px 0;
  }

  .product-info__container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .product-info__content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .product-info__kpi {
    align-self: center;
  }

  .product-info__text {
    max-width: 520px;
  }

  .product-info__title {
    font-size: 85px;
  }

  .product-gallery {
    padding-left: 0;
  }

  .product-gallery__thumbs {
    position: static;
    transform: none;
    flex-direction: row;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .product-info {
    height: calc(100dvh - var(--header-height, 64px));
    min-height: calc(100svh - var(--header-height, 64px));
    max-height: calc(100vh - var(--header-height, 64px));
    padding: 0 0 8px;
    overflow-x: hidden;
    overflow-y: auto;
  }

  .product-info__container {
    height: 100%;
    padding: 0 16px;
    gap: 10px;
    align-content: start;
  }

  .product-gallery {
    gap: 0;
  }

  .product-gallery__main {
    max-height: 340px;
  }

  .product-gallery__thumb {
    width: 56px;
    height: 42px;
  }

  .product-gallery__thumbs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 2px;
  }

  .product-info__kpi {
    font-size: 42px;
    padding: 4px 0;
  }

  .product-info__kpi::before {
    top: 11px;
  }

  .product-info__title {
    font-size: 85px;
    margin-bottom: 6px;
  }

  .product-info__text {
    font-size: 24px;
    margin-bottom: 14px;
  }

  .product-info__cta {
    width: 100%;
  }
}

/* =========================
   KSP Grid
========================= */

.c-ksp {
  padding: clamp(24px, 4vw, 56px) 0;
}

.c-ksp__inner {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 0 16px;
}

.c-ksp__header {
  margin-bottom: 20px;
}

.c-ksp__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.1;
  margin: 0 0 8px 0;
}

.c-ksp__note {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  opacity: 0.85;
}

.c-ksp__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}

.c-ksp__card {
  border-radius: 14px;
  overflow: hidden;
  background-color: var(--gray);
  background-image: var(--ksp-bg);
  background-size: cover;
  background-position: center;
  border: 1px solid var(--black);
}

.c-ksp__card-inner {
  min-height: 150px;
  padding: 18px 16px;
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: center;
}

.c-ksp__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 0;
}

.c-ksp__icon-img {
  width: 92px;
  height: 92px;
  object-fit: contain;
}

.c-ksp__text {
  margin: 10px 0 0 0;
  text-align: center;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 600;
  color: var(--black);
}

@media (max-width: 992px) {
  .c-ksp__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .c-ksp__card-inner {
    min-height: 140px;
  }
  .c-ksp__icon-img {
    width: 84px;
    height: 84px;
  }
}

@media (max-width: 520px) {
  .c-ksp__card-inner {
    padding: 16px 14px;
  }
  .c-ksp__text {
    font-size: 15px;
  }
}

/* =========================
   Product Description + Specs (PDS)
========================= */

.c-pds {
  padding: clamp(24px, 4vw, 56px) 0;
}

.c-pds__inner {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 0 16px;
}

.c-pds__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
}

.c-pds__content {
  font-size: 16px;
  line-height: 1.65;
  color: var(--black);
  font-weight: 400;
}

.c-pds__content p {
  margin: 0 0 16px 0;
}

.c-pds__content strong {
  font-weight: 700;
}

.c-pds__table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--green);
  background: var(--white);
  font-size: 15px;
  line-height: 1.3;
}

.c-pds__th,
.c-pds__td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--green);
}

.c-pds__tr:last-child .c-pds__th,
.c-pds__tr:last-child .c-pds__td {
  border-bottom: 0;
}

.c-pds__th {
  text-align: left;
  font-weight: 400;
  width: 45%;
  border-right: 1px solid var(--green);
}

.c-pds__td {
  font-weight: 700;
  width: 55%;
}

@media (max-width: 992px) {
  .c-pds__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* =========================
   Image + Rich Text (IRT)
========================= */

.c-irt {
  padding: clamp(24px, 4vw, 56px) 0;
}

.c-irt__inner {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 0 16px;
}

.c-irt__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 28px;
  align-items: center;
}

.c-irt__media {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.c-irt__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.c-irt__header {
  margin-bottom: 18px;
}

.c-irt__title-accent {
  margin: 0 0 10px 0;
  color: var(--green);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 500;
  font-style: italic;
  line-height: 1.2;
}

.c-irt__title-main {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 48px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.c-irt__body {
  font-size: 16px;
  line-height: 1.65;
  color: var(--black);
}

.c-irt__body * {
  font-weight: 400;
}

.c-irt__body strong,
.c-irt__body b {
  font-weight: 700;
}

.c-irt__body p {
  margin: 0 0 16px 0;
}

.c-irt__body p:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .c-irt__grid {
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
  }
}

/* =========================
   Applications + Collage
========================= */

.c-apps {
  padding: clamp(24px, 4vw, 48px) 0;
}

.c-apps__inner {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 0 16px;
}

.c-apps__top {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 48px;
}

.c-apps__title {
  justify-self: end;
  text-align: right;
  line-height: 1.05;
}

.c-apps__title-accent {
  display: block;
  font-size: clamp(26px, 2.8vw, 42px);
  font-weight: 300;
  color: var(--green);
}

.c-apps__title-rest {
  display: block;
  font-size: clamp(22px, 2.2vw, 34px);
  font-weight: 700;
  color: var(--black);
}

.c-apps__box {
  border: 2px solid var(--green);
  border-radius: var(--radius-xl);
  padding: 16px 18px;
  background: var(--white);

  font-size: 16px;
  line-height: 1.6;
  color: var(--black);
  text-align: left;
}

.c-apps__box * {
  font-weight: 400;
}

.c-apps__box strong,
.c-apps__box b {
  font-weight: 700;
}

.c-apps__box p {
  margin: 0 0 12px 0;
}

.c-apps__box p:last-child {
  margin-bottom: 0;
}

.c-apps__media {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: 290px 330px;
  gap: 24px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.c-apps__item {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: var(--gray);
  height: 100%;
}

.c-apps__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.c-apps__item--a {
  grid-column: 1 / span 3;
  grid-row: 1 / 2;
}

.c-apps__item--b {
  grid-column: 4 / span 2;
  grid-row: 1 / 2;
  height: 220px;
  align-self: center;
}

.c-apps__item--c {
  grid-column: 1 / span 2;
  grid-row: 2 / 3;
  height: 235px;
  align-self: center;
}

.c-apps__item--d {
  grid-column: 3 / span 3;
  grid-row: 2 / 3;
}

@media (max-width: 992px) {
  .c-apps__top {
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: start;
  }

  .c-apps__media {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 6px;
  }

  .c-apps__item {
    flex: 0 0 82%;
    height: 230px;
    scroll-snap-align: start;
  }
}

/* =========================
   Specs Checklist
========================= */

.c-speclist {
  --border: rgba(60, 60, 59, 0.15);
  padding: clamp(24px, 4vw, 56px) 0;
}

.c-speclist__inner {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}

.c-speclist__header {
  margin-bottom: 18px;
}

.c-speclist__title {
  font-family: var(--font-display);
  font-weight: 700;
  margin: 0 0 8px;
  font-size: 60px;
  color: var(--black);
}

.c-speclist__intro {
  margin: 0;
  opacity: 0.85;
  color: var(--black);
}

.c-speclist__groups {
  display: block;
}

.c-speclist__group {
  border-bottom: 1px solid var(--green);
}

.c-speclist__group-title {
  background: transparent;
  color: var(--black);
  font-weight: 700;
  font-size: 1.2rem;
  padding: 14px 0;
  cursor: pointer;

  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;

  transition: opacity 160ms ease;
}

.c-speclist__group-title:hover {
  opacity: 0.8;
}

.c-speclist__group-title::-webkit-details-marker {
  display: none;
}
.c-speclist__group-title::marker {
  content: "";
}

.c-speclist__chev {
  width: 11px;
  height: 11px;
  border-right: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.c-speclist__group[open] .c-speclist__chev {
  transform: rotate(-135deg);
}

.c-speclist__list {
  margin: 0;
  padding: 6px 0 10px;
}

.c-speclist__item {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;

  padding: 7px 0;
  border-top: 1px solid var(--border);
}

.c-speclist__item:first-child {
  border-top: none;
}

.c-speclist__text {
  font-weight: 600;
  color: var(--black);
}

.c-speclist__icon {
  width: 18px;
  height: 18px;
  display: inline-block;
}

.c-speclist__item[data-status="true"] .c-speclist__icon {
  background-color: var(--green);
  -webkit-mask: url("../img/icons/tick.svg") center / contain no-repeat;
  mask: url("../img/icons/tick.svg") center / contain no-repeat;
}

.c-speclist__legendItem[data-status="true"] .c-speclist__icon {
  background-color: var(--green);
  -webkit-mask: url("../img/icons/tick.svg") center / contain no-repeat;
  mask: url("../img/icons/tick.svg") center / contain no-repeat;
}

.c-speclist__item[data-status="plus"] .c-speclist__icon {
  background-color: var(--black);
  -webkit-mask: url("../img/icons/plus.svg") center / contain no-repeat;
  mask: url("../img/icons/plus.svg") center / contain no-repeat;
}

.c-speclist__legendItem[data-status="plus"] .c-speclist__icon {
  background-color: var(--black);
  -webkit-mask: url("../img/icons/plus.svg") center / contain no-repeat;
  mask: url("../img/icons/plus.svg") center / contain no-repeat;
}

.c-speclist__item[data-status="false"] .c-speclist__icon {
  display: none;
}

.c-speclist__legend {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
}

.c-speclist__legendItem {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--black);
  font-size: 14px;
  line-height: 1.2;
}

.c-speclist__legendText {
  font-weight: 600;
}

@media (max-width: 640px) {
  .c-speclist__group-title {
    font-size: 1.1rem;
    padding: 12px 0;
  }

  .c-speclist__item {
    padding: 6px 0;
  }
}

/* =========================
   Downloads Section
========================= */

.c-downloads {
  padding: clamp(28px, 4vw, 60px) 0;
}

.c-downloads__inner {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}

.c-downloads__header {
  margin-bottom: 22px;
}

.c-downloads__title {
  font-family: var(--font-display);
  font-weight: 700;
  margin: 0 0 8px;
  font-size: 60px;
  color: var(--black);
}

.c-downloads__intro {
  margin: 0;
  max-width: 70ch;
  opacity: 0.9;
  color: var(--black);
}

.c-downloads__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 26px;
}

.c-downloads__btn {
  padding: 14px 28px;
}

.c-downloads__icon {
  width: 16px;
  height: 16px;
  display: inline-block;
  background-color: currentColor;
  -webkit-mask: url("../img/icons/download.svg") center / contain no-repeat;
  mask: url("../img/icons/download.svg") center / contain no-repeat;
}

@media (max-width: 640px) {
  .c-downloads__actions {
    gap: 12px;
  }

  .c-downloads__btn {
    width: 100%;
    justify-content: center;
  }
}

/* =========================
   Support CTA
========================= */

.c-supportcta {
  background: var(--black);
  color: var(--text-invert);
  padding: clamp(24px, 3.2vw, 48px) 0;
}

.c-supportcta__inner {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.c-supportcta__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 3vw, 48px);
  align-items: center;
}

.c-supportcta__content {
  display: flex;
  justify-content: flex-start;
}

.c-supportcta__card {
  background: var(--white);
  color: var(--black);
  width: min(560px, 100%);
  padding: clamp(18px, 2.6vw, 34px);
  border-radius: var(--radius-md);
}

.c-supportcta__kicker {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 10px;
}

.c-supportcta__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.06;
  margin: 0 0 14px;
}

.c-supportcta__text {
  margin: 0 0 22px;
  line-height: 1.55;
  max-width: 58ch;
}

.c-supportcta__media {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
}

.c-supportcta__img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

@media (min-width: 901px) {
  .c-supportcta {
    max-height: 600px;
    overflow: hidden;
  }

  .c-supportcta__inner,
  .c-supportcta__grid {
    height: 100%;
  }

  .c-supportcta__img {
    max-height: 280px;
  }
}

@media (max-width: 900px) {
  .c-footer__inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .c-footer__col--left {
    border-right: 0;
    padding-right: 0;
    padding-bottom: 24px;
  }

  .c-footer__col--right {
    padding-left: 0;
    padding-top: 24px;
  }
}

/* =========================
   Hero Layered
========================= */

.c-heroLayered {
  --hero-speed-seconds: 30s;
  --hero-repeat-width: 1920px;
  --hero-min-height-mobile: 420px;

  position: relative;
  isolation: isolate;
  width: 100%;
  overflow: hidden;
  background-color: var(--gray);

  min-height: calc(100vh - var(--header-height, 0px));
  min-height: calc(100svh - var(--header-height, 0px));
}

.c-heroLayered__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;

  background-color: var(--gray);
  background-image: var(--hero-bg-image, none);
  background-position: 0 center;
  background-repeat: repeat-x;
  background-size: var(--hero-repeat-width) 100%;
  will-change: background-position;
  animation: heroLayeredScrollX var(--hero-speed-seconds) linear infinite;
}

.c-heroLayered--static .c-heroLayered__bg {
  animation: none;
  background-position: center center;
}

.c-heroLayered__overlay {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 3vw, 36px);
}

.c-heroLayered__overlayImg {
  display: block;
  width: min(78vw, 980px);
  max-width: 100%;
  max-height: calc(100svh - var(--header-height, 0px) - clamp(32px, 6vw, 72px));
  height: auto;
  object-fit: contain;
}

@keyframes heroLayeredScrollX {
  from {
    background-position-x: 0;
  }
  to {
    background-position-x: var(--hero-repeat-width);
  }
}

@media (max-width: 991px) {
  .c-heroLayered__overlayImg {
    width: min(86vw, 760px);
  }
}

@media (max-width: 767px) {
  .c-heroLayered {
    min-height: min(
      calc(100svh - var(--header-height, 0px)),
      var(--hero-min-height-mobile)
    );
  }

  .c-heroLayered__overlayImg {
    width: min(90vw, 540px);
    max-height: calc(100svh - var(--header-height, 0px) - 28px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .c-heroLayered__bg {
    animation: none;
    background-position: center center;
  }
}

/* =========================
   Home About CTA
========================= */

.c-homeAboutCta {
  padding: clamp(36px, 5vw, 72px) 0;
  background: var(--white);
}

.c-homeAboutCta__inner {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(20px, 4vw, 56px);
  align-items: center;
}

.c-homeAboutCta__inner--noMedia {
  grid-template-columns: 1fr;
}

.c-homeAboutCta__media {
  margin: 0;
  display: flex;
  align-items: center;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.c-homeAboutCta__img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 800px;
  object-fit: contain;
  margin-inline: auto;
  border-radius: var(--radius-md);
}

.c-homeAboutCta__carousel {
  width: 100%;
  max-height: 800px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.c-homeAboutCta__carouselTrack {
  display: grid;
  width: 100%;
  max-height: 800px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.c-homeAboutCta__slide {
  grid-area: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 360ms ease;
  max-height: 800px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.c-homeAboutCta__slide.is-active {
  opacity: 1;
  visibility: visible;
}

.c-homeAboutCta__dots {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.c-homeAboutCta__dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(60, 60, 59, 0.3);
  cursor: pointer;
  padding: 0;
}

.c-homeAboutCta__dot.is-active {
  background: var(--green);
}

.c-homeAboutCta__content {
  max-width: 70ch;
}

.c-homeAboutCta__title {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.04;
  color: var(--black);
}

.c-homeAboutCta__text {
  margin: 0;
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.55;
  font-weight: 400;
  color: var(--black);
}

.c-homeAboutCta__actions {
  margin-top: 24px;
}

.c-homeAboutCta__btn {
  min-height: 44px;
  padding-inline: 24px;
}

.c-homeAboutCta__btn:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

@media (max-width: 900px) {
  .c-homeAboutCta__inner {
    grid-template-columns: 1fr;
  }

  .c-homeAboutCta__content {
    order: 1;
  }

  .c-homeAboutCta__media {
    order: 2;
  }

  .c-homeAboutCta__content {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .c-homeAboutCta {
    padding: 32px 0;
  }

  .c-homeAboutCta__actions {
    margin-top: 20px;
  }

  .c-homeAboutCta__btn {
    width: 100%;
    justify-content: center;
  }

  .c-homeAboutCta__dots {
    margin-top: 10px;
  }
}

/* =========================
   Home Gama
========================= */

.c-homeGama {
  padding: clamp(40px, 6vw, 82px) 0;
  background: var(--white);
}

.c-homeGama__inner {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.c-homeGama__title {
  margin: 0 0 clamp(72px, 9vw, 112px);
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1;
  color: var(--green);
}

.c-homeGama__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 28px);
  margin-top: 6px;
}

.c-homeGama__card {
  display: grid;
  grid-template-rows: auto 1fr;
  align-items: stretch;
  min-height: 330px;
  padding: 0 20px 16px;
  text-decoration: none;
  background: var(--gray);
  border: 0;
  border-radius: var(--radius-md);
  transition: background-color 220ms ease;
}

.c-homeGama__card:hover,
.c-homeGama__card:focus-visible {
  background: transparent;
}

.c-homeGama__imageWrap {
  width: 100%;
  height: 250px;
  margin-top: -52px;
  margin-bottom: 2px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.c-homeGama__image {
  width: min(100%, 350px);
  max-height: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.c-homeGama__label {
  margin: 0;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(26px, 2.6vw, 40px);
  line-height: 1.1;
  color: var(--black);
}

.c-homeGama__card:hover .c-homeGama__label,
.c-homeGama__card:focus-visible .c-homeGama__label {
  color: var(--green);
}

@media (max-width: 1024px) {
  .c-homeGama__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .c-homeGama__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .c-homeGama__card {
    min-height: 290px;
    padding: 0 14px 14px;
  }

  .c-homeGama__imageWrap {
    height: 210px;
    margin-top: -34px;
  }

  .c-homeGama__image {
    width: min(100%, 290px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .c-homeGama__card {
    transition: none;
  }
}

/* =========================
   Home Counters
========================= */

.c-homeCounters {
  padding: clamp(32px, 5vw, 70px) 0;
  background: var(--white);
}

.c-homeCounters__inner {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 28px);
}

.c-homeCounters__item {
  text-align: center;
  padding: clamp(14px, 2.6vw, 26px) clamp(12px, 2vw, 20px);
  border-top: 2px solid var(--green);
  border-bottom: 2px solid rgba(60, 60, 59, 0.16);
}

.c-homeCounters__numberWrap {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
}

.c-homeCounters__prefix {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
  color: var(--green);
}

.c-homeCounters__number {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 74px);
  line-height: 1;
  color: var(--black);
}

.c-homeCounters__label {
  margin: 14px auto 0;
  max-width: 30ch;
  font-size: clamp(15px, 1.3vw, 19px);
  line-height: 1.4;
  font-weight: 700;
  color: var(--black);
}

@media (max-width: 900px) {
  .c-homeCounters__inner {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .c-homeCounters__item {
    border-bottom: 0;
  }
}
/* =========================
   Footer (restored + adjustments)
========================= */

.c-footer {
  margin-top: auto;
  color: var(--black);
  font-weight: 400;
}

.c-footer * {
  font-weight: 400;
}

.c-footer__main {
  background: var(--green);
}

.c-footer__inner {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2.6vw, 36px);
}

.c-footer__col {
  padding: clamp(14px, 2.2vw, 28px) 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.c-footer__col--left {
  padding-right: clamp(16px, 2.5vw, 30px);
}

.c-footer__col--right {
  padding: clamp(18px, 2.6vw, 30px) clamp(18px, 2.6vw, 30px) clamp(16px, 2.2vw, 24px) clamp(24px, 3vw, 42px);
  position: relative;
  overflow: hidden;
}

.c-footer__col--right::before {
  content: "";
  position: absolute;
  inset: clamp(10px, 1.4vw, 18px) clamp(14px, 2.2vw, 28px) clamp(10px, 1.4vw, 18px) clamp(16px, 2.2vw, 28px);
  background-image: var(--footer-right-bg);
  background-position: left center;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}

.c-footer__col--right > * {
  position: relative;
  z-index: 1;
}

.c-footer__panel {
  background: transparent;
  padding: 0;
}

.c-footer__menu,
.c-footer__menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.c-footer__menu li + li {
  margin-top: 8px;
}

.c-footer__menu a {
  display: inline-block;
  color: var(--black);
  font-size: clamp(20px, 1.9vw, 28px);
  line-height: 1.25;
}

@media (min-width: 901px) {
  .c-footer__menu a {
    font-size: clamp(16px, 1.25vw, 21px);
  }
}

.c-footer__menu a:hover,
.c-footer__menu a:focus-visible {
  text-decoration: underline;
}

.c-footer__social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.c-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: transparent;
  color: var(--black);
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.c-footer__social-link:hover,
.c-footer__social-link:focus-visible {
  background: var(--black);
  color: var(--white);
  transform: translateY(-1px);
}

.c-footer__social-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
}

.c-footer__social-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.c-footer__panel--address {
  position: relative;
  border-radius: 8px;
  padding: 10px 14px;
  min-height: clamp(140px, 14vw, 190px);
}

.c-footer__address-card {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.c-footer__company {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: clamp(32px, 3vw, 48px);
  line-height: 1;
  color: var(--black);
  letter-spacing: 0.02em;
  font-weight: 700;
}

.c-footer__contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.c-footer__contact-item {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 8px;
}

.c-footer__contact-icon {
  width: 22px;
  height: 22px;
  color: var(--black);
  margin-top: 1px;
}

.c-footer__contact-icon svg {
  width: 100%;
  height: 100%;
}

.c-footer__contact-text {
  margin: 0;
  color: var(--black);
  font-family: var(--font-sans);
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.4;
}

.c-footer__contact-link:hover,
.c-footer__contact-link:focus-visible {
  text-decoration: underline;
}

.c-footer__panel--logo {
  min-height: 46px;
  max-width: 300px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.c-footer__logo-img {
  width: auto;
  max-height: 50px;
  max-width: min(100%, 360px);
}

.c-footer__legal {
  background: var(--white);
  color: var(--black);
  border-top: 1px solid rgba(60, 60, 59, 0.16);
}

.c-footer__legal-inner {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 6px 0;
  font-size: 12px;
  line-height: 1.3;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.c-footer__legal-menu {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.c-footer__legal-item {
  display: inline-flex;
  align-items: center;
}

.c-footer__legal-item + .c-footer__legal-item::before {
  content: "|";
  opacity: 0.5;
  margin-right: 10px;
}

.c-footer__legal-link:hover,
.c-footer__legal-link:focus-visible {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .c-footer__inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .c-footer__col--left {
    order: 2;
    padding-right: 0;
    padding-bottom: 16px;
  }

  .c-footer__col--right {
    order: 1;
    padding: 12px 0 0;
  }

  .c-footer__col--right::before {
    inset: 8px 0 8px 0;
    background-size: contain;
  }

  .c-footer__company {
    font-size: clamp(36px, 9vw, 46px);
  }

  .c-footer__contact-text {
    font-size: clamp(16px, 4.3vw, 19px);
    line-height: 1.45;
  }
}

/* =========================
   Header (restored)
========================= */

.c-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
}

.c-header__inner {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.c-header__top {
  background: var(--black);
  color: var(--text-invert);
  font-size: 12px;
}

.c-header__inner--top {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 8px 0;
}

.c-topbar__menu {
  display: flex;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.c-topbar__menu a {
  color: var(--text-invert);
  opacity: 0.9;
  transition: opacity 160ms ease;
}

.c-topbar__menu a:hover,
.c-topbar__menu a:focus-visible {
  opacity: 1;
}

.c-header__main {
  background: var(--white);
  box-shadow:
    0 1px 0 rgba(60, 60, 59, 0.1),
    0 6px 16px rgba(0, 0, 0, 0.08);
}

.c-header__accent {
  height: 0;
  background: transparent;
}

.c-header__inner--main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 10px 0;
}

.c-header__brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-height: 44px;
  line-height: 1;
}

.c-header .c-header__brand .custom-logo-link {
  display: inline-flex !important;
  align-items: center !important;
  line-height: 1 !important;
  max-width: 400px !important;
}

.c-header .c-header__brand img.custom-logo {
  height: auto !important;
  width: auto !important;
  max-width: 400px !important;
  max-height: 56px !important;
  display: block !important;
  object-fit: contain !important;
  transform: none;
}

.c-header__brand-text {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.02em;
  color: var(--black);
}

.c-header__toggle {
  display: none;
  justify-self: end;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(60, 60, 59, 0.2);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transition: box-shadow 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.c-header__toggle:hover {
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
  border-color: rgba(60, 60, 59, 0.55);
  transform: translateY(-1px);
}

.c-header__burger {
  width: 22px;
  height: 18px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.c-header__burger-line {
  display: block;
  width: 22px;
  height: 3px;
  background: var(--black);
  border-radius: 999px;
  transform-origin: center;
  transition: transform 160ms ease, opacity 160ms ease;
}

.c-header.is-open .c-header__burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.c-header.is-open .c-header__burger-line:nth-child(2) {
  opacity: 0;
}

.c-header.is-open .c-header__burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.c-header__nav {
  justify-self: end;
}

.c-header__nav-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.c-nav__menu {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.c-nav__menu > li {
  position: relative;
}

.c-nav__menu > li > a {
  display: inline-flex;
  align-items: center;
  padding: 10px 10px;
  border-top: 2px solid transparent;
  border-radius: 0;
  background: transparent;
  transition: border-color 160ms ease;
}

.c-nav__menu > li:hover > a,
.c-nav__menu > li:focus-within > a {
  border-top-color: var(--black);
}

.c-nav__menu li .sub-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 240px;
  background: var(--white);
  border: 1px solid rgba(60, 60, 59, 0.18);
  border-radius: 6px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.15);
  padding: 10px;
  margin: 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.c-nav__menu li:hover > .sub-menu,
.c-nav__menu li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.c-nav__menu li .sub-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  font-weight: 700;
  transition: background-color 160ms ease;
}

.c-nav__menu li .sub-menu a:hover,
.c-nav__menu li .sub-menu a:focus-visible {
  background: var(--gray);
}

.c-lang {
  position: relative;
}

.c-lang__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 40px;
  padding: 0 12px;
  border-radius: 6px;
  border: 1px solid rgba(60, 60, 59, 0.22);
  background: var(--white);
  cursor: pointer;
  transition: box-shadow 160ms ease, border-color 160ms ease;
}

.c-lang__btn:hover {
  box-shadow: var(--shadow-hover);
  border-color: rgba(60, 60, 59, 0.45);
}

.c-lang__code {
  font-weight: 700;
  letter-spacing: 0.06em;
}

.c-lang__chev {
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
  transform: rotate(45deg);
  margin-top: -2px;
}

.c-lang__panel {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  width: 220px;
  background: var(--white);
  border: 1px solid rgba(60, 60, 59, 0.18);
  border-radius: 6px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.15);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.c-lang:hover .c-lang__panel,
.c-lang:focus-within .c-lang__panel,
.c-lang.is-open .c-lang__panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.c-lang__menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.c-lang__menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  transition: background-color 160ms ease;
}

.c-lang__menu a:hover,
.c-lang__menu a:focus-visible {
  background: var(--gray);
}

.c-lang__item.is-active .c-lang__link {
  background: rgba(60, 60, 59, 0.08);
  font-weight: 800;
}

.c-header__top-inmenu {
  display: none;
}

.c-nav__close {
  display: none;
}

@media (max-width: 992px) {
  .c-header__inner--main {
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 10px 0;
  }

  .c-header__brand {
    justify-self: start;
  }

  .c-header .c-header__brand img.custom-logo {
    max-width: 220px !important;
    max-height: 34px !important;
  }

  .c-header__toggle {
    display: inline-flex;
  }

  .c-header__top {
    display: none;
  }

  .c-header__nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
  }

  .c-header.is-open .c-header__nav {
    display: flex !important;
  }

  .c-header__nav::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.62);
  }

  .c-header__nav-inner {
    position: relative;
    width: min(560px, calc(100vw - 32px));
    max-width: 100%;
    max-height: calc(100dvh - 32px);
    overflow: auto;
    margin: 0 auto;
    background: var(--white);
    border-radius: 6px;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
    text-align: center;
    padding: 18px 18px 16px;
  }

  .c-nav__close {
    display: inline-flex;
    position: sticky;
    top: 0;
    margin-left: auto;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(60, 60, 59, 0.22);
    border-radius: 6px;
    background: var(--white);
    cursor: pointer;
  }

  .c-nav__close::before,
  .c-nav__close::after {
    content: "";
    position: absolute;
    width: 18px;
    height: 2px;
    background: var(--black);
    border-radius: 2px;
  }

  .c-nav__close::before { transform: rotate(45deg); }
  .c-nav__close::after { transform: rotate(-45deg); }

  .c-nav__menu {
    flex-direction: column;
    align-items: center;
    gap: 0;
    font-size: 18px;
    width: min(560px, 100%);
  }

  .c-nav__menu > li {
    width: 100%;
  }

  .c-nav__menu > li > a {
    width: 100%;
    padding: 14px 10px;
    border-top: 0;
    border-bottom: 1px solid rgba(60, 60, 59, 0.18);
    justify-content: center;
  }

  .c-nav__menu li .sub-menu {
    position: static;
    min-width: 0;
    border: 0;
    box-shadow: none;
    padding: 8px 0 12px 0;
    margin: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }

  .c-nav__menu li.is-subopen > .sub-menu {
    display: block;
  }

  .c-nav__menu li .sub-menu a {
    padding: 12px 10px;
    margin-left: 0;
    border-left: 0;
    border-radius: 6px;
    text-align: center;
  }

  .c-lang {
    align-self: center;
    width: 100%;
    max-width: 340px;
  }

  .c-lang__btn {
    width: 100%;
    justify-content: center;
  }

  .c-lang__panel {
    position: static;
    width: 100%;
    margin-top: 10px;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }

  .c-lang.is-open .c-lang__panel {
    display: block;
  }

  .c-lang__menu a {
    text-align: center;
  }

  .c-header__top-inmenu {
    display: block;
    margin-top: auto;
    padding: 12px 10px;
    border-radius: 6px;
    background: var(--black);
  }

  .c-topbar__menu--inmenu {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .c-topbar__menu--inmenu a {
    color: var(--text-invert);
    opacity: 0.9;
    font-size: 13px;
  }

  .c-topbar__menu--inmenu a:hover,
  .c-topbar__menu--inmenu a:focus-visible {
    opacity: 1;
  }
}

/* =========================
   Product Collection Hero
========================= */

.c-productCollectionHero {
  position: relative;
  isolation: isolate;
  min-height: clamp(260px, 34vw, 420px);
  background-color: var(--black);
  background-image: var(--pc-hero-bg-desktop);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.c-productCollectionHero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(78deg, rgba(60, 60, 59, 0.14) 0%, rgba(60, 60, 59, 0.84) 62%);
  z-index: 0;
}

.c-productCollectionHero__inner {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  min-height: inherit;
  padding: clamp(22px, 3vw, 38px) 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  z-index: 1;
}

.c-productCollectionHero__content {
  grid-column: 2 / 3;
  display: grid;
  gap: 14px;
  justify-items: center;
  text-align: center;
  width: min(520px, 92%);
  margin-left: auto;
  margin-right: auto;
}

.c-productCollectionHero__title {
  margin: 0;
  max-width: min(480px, 100%);
  font-family: var(--font-sans);
  font-size: clamp(24px, 2.8vw, 42px);
  line-height: 1.06;
  letter-spacing: 0.01em;
  color: var(--white);
  font-weight: 400;
}

.c-productCollectionHero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 22px;
  border-radius: var(--radius-sm);
  background: var(--green);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  transition: filter 160ms ease, transform 160ms ease;
}

.c-productCollectionHero__cta--green {
  background: var(--green);
}

.c-productCollectionHero__cta--blue {
  background: #0084cc;
}

.c-productCollectionHero__cta:hover,
.c-productCollectionHero__cta:focus-visible {
  filter: brightness(0.94);
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .c-productCollectionHero {
    min-height: clamp(320px, 74vw, 480px);
    background-image: var(--pc-hero-bg-mobile, var(--pc-hero-bg-desktop));
  }

  .c-productCollectionHero__overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(60, 60, 59, 0.62) 100%);
  }

  .c-productCollectionHero__inner {
    grid-template-columns: 1fr;
    padding: 22px 0;
  }

  .c-productCollectionHero__content {
    grid-column: 1 / -1;
    justify-items: center;
    text-align: center;
    gap: 16px;
    width: min(92%, 620px);
    margin-left: auto;
    margin-right: auto;
  }

  .c-productCollectionHero__title {
    font-size: clamp(30px, 9vw, 54px);
    max-width: 14ch;
    margin-left: auto;
    margin-right: auto;
  }

  .c-productCollectionHero__cta {
    min-height: 42px;
    padding: 0 20px;
    font-size: 14px;
  }
}

/* =========================
   Product Collection
========================= */

.c-productCollection {
  padding: clamp(28px, 5vw, 64px) 0;
  background: #f3f3f3;
}

.c-productCollection__inner {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: clamp(18px, 2.6vw, 36px);
  align-items: start;
}

.c-productCollection__inner--noFilters {
  grid-template-columns: 1fr;
}

.c-productCollection__filters {
  position: sticky;
  top: calc(var(--header-height, 70px) + 20px);
}

.c-productCollection__filtersLayer {
  position: static;
}

.c-productCollection__filtersBackdrop {
  display: none;
}

.c-productCollection__filtersHead {
  display: block;
}

.c-productCollection__filtersClose {
  display: none;
}

.c-productCollection__filtersTrigger {
  display: none;
}

.c-productCollection__filtersTitle {
  margin: 0 0 18px;
  font-family: var(--font-sans);
  font-size: 24px;
  line-height: 1.1;
  font-weight: 700;
  color: var(--green);
}

@media (min-width: 901px) {
  .c-productCollection__filtersTitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .c-productCollection__filtersTitle::after {
    content: "";
    width: 14px;
    height: 14px;
    background-color: var(--black);
    -webkit-mask: url("../img/icons/filter.svg") center / contain no-repeat;
    mask: url("../img/icons/filter.svg") center / contain no-repeat;
  }
}

.c-productCollection__filterGroup {
  margin: 0;
  border: 1px solid #d6d6d6;
  border-bottom: 0;
  background: var(--white);
}

.c-productCollection__filterGroup:last-of-type {
  border-bottom: 1px solid #d6d6d6;
}

.c-productCollection__filterSummary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  font-size: 15px;
  line-height: 1.1;
  font-weight: 700;
  color: var(--black);
}

.c-productCollection__filterSummary::-webkit-details-marker {
  display: none;
}

.c-productCollection__filterSummary span {
  font-size: 16px;
  line-height: 1;
}

.c-productCollection__filterGroup[open] .c-productCollection__filterSummary span {
  transform: rotate(45deg);
}

.c-productCollection__filterOptions {
  display: grid;
  gap: 10px;
  padding: 0 18px 16px;
}

.c-productCollection__option {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 400;
  color: var(--black);
}

.c-productCollection__option span {
  font-weight: 400;
}

.c-productCollection__option input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--green);
}

.c-productCollection__clearBtn {
  width: 100%;
  border: 0;
  margin-top: 12px;
  min-height: 44px;
  padding: 10px 14px;
  background: #888;
  color: var(--white);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
  cursor: pointer;
}

.c-productCollection__clearBtn:hover,
.c-productCollection__clearBtn:focus-visible {
  filter: brightness(0.92);
}

.c-productCollection__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 30px);
}

.c-productCollection__card {
  position: relative;
  min-height: 390px;
  background: transparent;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.c-productCollection__cardBody {
  display: block;
  padding: 16px 16px 18px;
  background: transparent;
}

.c-productCollection__imageWrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1.8 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-productCollection__image {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 230px;
  max-height: 170px;
  height: auto;
  object-fit: contain;
  transition: opacity 220ms ease;
}

.c-productCollection__image--hover {
  position: absolute;
  inset: 0;
  margin: auto;
  opacity: 0;
  z-index: 2;
}

@media (hover: hover) and (pointer: fine) {
  .c-productCollection__card--has-hover-image:hover .c-productCollection__image:not(.c-productCollection__image--hover),
  .c-productCollection__card--has-hover-image:focus-within .c-productCollection__image:not(.c-productCollection__image--hover) {
    opacity: 0;
  }

  .c-productCollection__card:hover .c-productCollection__image--hover,
  .c-productCollection__card:focus-within .c-productCollection__image--hover {
    opacity: 1;
  }
}

.c-productCollection__name {
  margin: 8px 0 18px;
  font-family: var(--font-display);
  font-size: clamp(30px, 2.4vw, 44px);
  line-height: 1;
  color: var(--black);
}

.c-productCollection__nameRow {
  position: relative;
  display: block;
  width: 100%;
  min-height: 44px;
  margin: 8px 0 18px;
}

.c-productCollection__nameRow .c-productCollection__name {
  margin: 0;
  text-align: left;
  padding-right: 120px;
}

.c-productCollection__metaIcons {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  flex: 0 0 auto;
}

.c-productCollection__metaIcon {
  width: 50px;
  height: 50px;
  object-fit: contain;
  display: block;
}

.c-productCollection__metaIcon + .c-productCollection__metaIcon {
  margin-left: 4px;
}

.c-productCollection__specs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.c-productCollection__specs li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 400;
  color: var(--black);
}

.c-productCollection__specs li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.16em;
  width: 10px;
  height: 14px;
  background-image: url("../img/icons/bullet-arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.c-productCollection__cta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 14px 16px;
  background: var(--green);
  color: var(--white);
  font-size: 18px;
  line-height: 1;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 180ms ease, transform 180ms ease;
  pointer-events: none;
}

.c-productCollection__card--electric .c-productCollection__cta {
  background: #0084cc;
}

.c-productCollection__card:hover,
.c-productCollection__card:focus-within {
  border-color: var(--green);
}

.c-productCollection__card--electric:hover,
.c-productCollection__card--electric:focus-within {
  border-color: #0084cc;
}

.c-productCollection__card:hover .c-productCollection__cta,
.c-productCollection__card:focus-within .c-productCollection__cta {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.c-productCollection__empty {
  margin: 0;
  font-size: 14px;
}

@media (max-width: 1100px) {
  .c-productCollection__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .c-productCollection__inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .c-productCollection__filtersLayer {
    position: fixed;
    inset: 0;
    z-index: 2200;
    display: grid;
    place-items: center;
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 180ms ease, visibility 180ms ease;
  }

  .js-product-collection.is-filters-open .c-productCollection__filtersLayer {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .c-productCollection__filtersBackdrop {
    display: block;
    position: absolute;
    inset: 0;
    border: 0;
    margin: 0;
    padding: 0;
    background: rgba(0, 0, 0, 0.54);
    cursor: pointer;
  }

  .c-productCollection__filters {
    position: relative;
    top: auto;
    width: min(560px, calc(100vw - 32px));
    max-height: calc(100dvh - 32px);
    overflow: auto;
    background: #f3f3f3;
    border-radius: var(--radius-md);
    padding: 14px;
    z-index: 1;
  }

  .c-productCollection__filtersHead {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
  }

  .c-productCollection__filtersClose {
    display: inline-flex;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--black);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
  }

  .c-productCollection__filtersTitle {
    margin: 0;
  }

  .c-productCollection__filtersTrigger {
    position: fixed;
    left: 14px;
    bottom: 14px;
    z-index: 1200;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 999px;
    background: var(--black);
    color: var(--white);
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.24);
  }

  .c-productCollection__filtersTriggerIcon {
    width: 16px;
    height: 16px;
    background-color: currentColor;
    -webkit-mask: url("../img/icons/filter.svg") center / contain no-repeat;
    mask: url("../img/icons/filter.svg") center / contain no-repeat;
  }

  .c-productCollection__filtersTrigger span:not(.c-productCollection__filtersTriggerIcon) {
    display: none;
  }

  body.has-product-filters-open {
    overflow: hidden;
  }
}

@media (max-width: 680px) {
  .c-productCollection__grid {
    grid-template-columns: 1fr;
  }

  .c-productCollection__card {
    min-height: 0;
    border-color: transparent !important;
    padding-bottom: 0;
  }

  .c-productCollection__cta {
    position: static;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    min-height: 58px;
    margin-top: 12px;
    border-radius: var(--radius-sm);
  }

  .c-productCollection__name {
    font-size: 44px;
  }

  .c-productCollection__nameRow {
    margin: 8px 0 16px;
    min-height: 40px;
  }

  .c-productCollection__metaIcon {
    width: 45px;
    height: 45px;
  }

  .c-productCollection__nameRow .c-productCollection__name {
    padding-right: 102px;
  }
}

@media (min-width: 681px) {
  .c-productCollection__cardBody {
    padding-bottom: 84px;
  }
}

/* =========================
   Collection Hero Grid
========================= */

.chg {
  padding: 0 0 clamp(28px, 4vw, 64px);
}

.chg__hero {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  background: #e3e3e3;
}

.chg__hero--empty {
  min-height: clamp(120px, 18vw, 220px);
}

.chg__hero-img {
  display: block;
  width: 100%;
  height: clamp(180px, 28vw, 380px);
  object-fit: cover;
  object-position: center;
}

.chg__intro {
  position: relative;
  z-index: 2;
  margin-top: clamp(-110px, -9vw, -70px);
  padding: 0 16px;
}

.chg--no-hero .chg__intro {
  margin-top: clamp(18px, 3vw, 34px);
}

.chg__intro-inner {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: clamp(16px, 2.2vw, 28px);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.14);
  text-align: left;
}

.chg__title {
  margin: 0;
  color: var(--black);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 3.8vw, 56px);
  line-height: 1;
  letter-spacing: 0.008em;
}

.chg__text {
  max-width: none;
  margin: clamp(10px, 1.2vw, 14px) 0 0;
  color: var(--black);
  font-family: var(--font-sans);
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.55;
}

.chg__text * {
  font-weight: 400;
}

.chg__text strong,
.chg__text b {
  font-weight: 700;
}

.chg__text p {
  margin: 0 0 12px;
}

.chg__text p:last-child {
  margin-bottom: 0;
}

.chg__grid {
  width: min(1200px, 100%);
  margin: clamp(20px, 3.2vw, 40px) auto 0;
  padding: 0 16px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.8vw, 24px);
}

.chg__card {
  min-width: 0;
}

.chg__card-link {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  isolation: isolate;
  background: #dbdbdb;
  transform: translateY(0);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.chg__card-link::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 28%, rgba(0, 0, 0, 0.68) 100%);
  transition: background 180ms ease;
}

.chg__card-media {
  width: 100%;
  height: 100%;
}

.chg__card-media--empty {
  background: linear-gradient(135deg, #ececec 0%, #d8d8d8 100%);
}

.chg__card-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.chg__card-label {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  z-index: 2;
  margin: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(22px, 2.1vw, 34px);
  line-height: 1;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.4);
}

@media (hover: hover) and (pointer: fine) {
  .chg__card-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
  }

  .chg__card-link:hover::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.06) 22%, rgba(0, 0, 0, 0.78) 100%);
  }
}

.chg__card-link:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
  box-shadow: 0 0 0 2px var(--white);
}

@media (max-width: 1024px) {
  .chg__hero-img {
    height: clamp(170px, 32vw, 300px);
  }

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

@media (max-width: 640px) {
  .chg__intro {
    margin-top: clamp(-54px, -10vw, -34px);
    padding: 0 12px;
  }

  .chg--no-hero .chg__intro {
    margin-top: 16px;
  }

  .chg__intro-inner {
    padding: 18px 16px 20px;
  }

  .chg__grid {
    grid-template-columns: 1fr;
    padding: 0 12px;
  }

  .chg__card-link {
    aspect-ratio: 1.6 / 1;
  }
}

/* =========================
   Default Page Template
========================= */

.c-pageDefault {
  padding: clamp(28px, 4vw, 60px) 0 clamp(44px, 6vw, 78px);
}

.c-pageDefault__article,
.c-pageDefault #comments.comments-area {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}

.c-pageDefault__header {
  margin: 0 0 clamp(16px, 2.3vw, 28px);
}

.c-pageDefault__header .entry-title {
  margin: 0;
  color: var(--black);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 1;
  letter-spacing: 0.01em;
}

.c-pageDefault .post-thumbnail {
  margin: 0 0 clamp(18px, 2.6vw, 30px);
}

.c-pageDefault .post-thumbnail img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
}

.c-pageDefault__content {
  margin: 0;
  color: var(--black);
  --c-page-content-size: min(1100px, 100%);
  --c-page-wide-size: min(1200px, 100%);
  --wp--style--global--content-size: var(--c-page-content-size);
  --wp--style--global--wide-size: var(--c-page-wide-size);
}

.c-pageDefault__content > * {
  width: 100%;
  max-width: var(--c-page-content-size);
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: clamp(14px, 1.8vw, 22px);
}

.c-pageDefault__content > :last-child {
  margin-bottom: 0;
}

.c-pageDefault__content > .wp-block-image,
.c-pageDefault__content > .wp-block-gallery,
.c-pageDefault__content > .wp-block-cover,
.c-pageDefault__content > .wp-block-media-text,
.c-pageDefault__content > .alignwide,
.c-pageDefault__content > .alignfull {
  width: 100%;
  max-width: 100%;
}

.c-pageDefault__content .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.c-pageDefault__content .wp-block-group,
.c-pageDefault__content .wp-block-columns,
.c-pageDefault__content .wp-block-media-text {
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.c-pageDefault__content .wp-block-media-text {
  gap: clamp(16px, 2.2vw, 30px);
  align-items: center;
}

.c-pageDefault__content .wp-block-media-text__content {
  padding: 0;
}

.c-pageDefault__content .wp-block-media-text__media img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.c-pageDefault__content p,
.c-pageDefault__content li {
  margin-top: 0;
  color: var(--black);
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.7;
  font-weight: 400;
}

.c-pageDefault__content h2,
.c-pageDefault__content h3,
.c-pageDefault__content h4 {
  margin-top: clamp(22px, 3vw, 34px);
  margin-bottom: 12px;
  color: var(--black);
  line-height: 1.2;
}

.c-pageDefault__content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.8vw, 2.7rem);
}

.c-pageDefault__content h3 {
  font-size: clamp(1.25rem, 2vw, 1.8rem);
}

.c-pageDefault__content a,
.c-pageDefault__content a:visited {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.c-pageDefault__content a:hover,
.c-pageDefault__content a:focus-visible {
  color: var(--black);
}

.c-pageDefault #comments.comments-area {
  margin-top: clamp(24px, 4vw, 44px);
  padding-top: clamp(16px, 2.4vw, 24px);
  border-top: 1px solid rgba(60, 60, 59, 0.16);
}

@media (max-width: 700px) {
  .c-pageDefault__article,
  .c-pageDefault #comments.comments-area {
    width: calc(100% - 24px);
  }
}

/* =========================
   Page Breadcrumbs
========================= */

.c-pageBreadcrumbs {
  background: var(--white);
  border-bottom: 1px solid rgba(60, 60, 59, 0.12);
}

.c-pageBreadcrumbs__inner {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 10px 0;
}

.c-pageBreadcrumbs__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 13px;
  color: rgba(60, 60, 59, 0.78);
}

.c-pageBreadcrumbs__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.c-pageBreadcrumbs__item + .c-pageBreadcrumbs__item::before {
  content: "/";
  color: rgba(60, 60, 59, 0.45);
}

.c-pageBreadcrumbs__item a {
  color: inherit;
  text-decoration: none;
}

.c-pageBreadcrumbs__item a:hover,
.c-pageBreadcrumbs__item a:focus-visible {
  text-decoration: underline;
}

@media (max-width: 700px) {
  .c-pageBreadcrumbs__inner {
    width: calc(100% - 24px);
  }
}

/* =========================
   Manual News Cards (hard override)
========================= */

.c-newsManual .blog-list {
  align-items: stretch;
  grid-auto-rows: 1fr;
}

.c-newsManual .post-card {
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
}

.c-newsManual .c-newsManual__cardLink {
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  transition: background-color 170ms ease, color 170ms ease;
}

.c-newsManual .post-card__body {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.c-newsManual .post-card__title {
  margin: 0;
}

.c-newsManual .c-newsManual__title span {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  line-height: 1.25;
  min-height: 2.5em;
}

.c-newsManual .c-newsManual__excerpt {
  margin: 0;
  line-height: 1.6;
  min-height: 6.4em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.c-newsManual .c-newsManual__cta {
  margin-top: auto;
  min-height: 44px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: var(--radius-sm);
  background: var(--green) !important;
  border: 1px solid var(--green) !important;
  color: var(--white) !important;
}

.c-newsManual .c-newsManual__cta:visited {
  color: var(--white) !important;
}

.c-newsManual .c-newsManual__cardLink:hover,
.c-newsManual .c-newsManual__cardLink:focus-visible {
  background: var(--black) !important;
  color: var(--white) !important;
}

.c-newsManual .c-newsManual__cardLink:hover .post-card__body,
.c-newsManual .c-newsManual__cardLink:focus-visible .post-card__body {
  background: var(--black) !important;
}

.c-newsManual .c-newsManual__cardLink:hover .c-newsManual__title span,
.c-newsManual .c-newsManual__cardLink:focus-visible .c-newsManual__title span,
.c-newsManual .c-newsManual__cardLink:hover .c-newsManual__excerpt,
.c-newsManual .c-newsManual__cardLink:focus-visible .c-newsManual__excerpt,
.c-newsManual .c-newsManual__cardLink:hover .post-card__meta,
.c-newsManual .c-newsManual__cardLink:focus-visible .post-card__meta,
.c-newsManual .c-newsManual__cardLink:hover .post-card__meta span,
.c-newsManual .c-newsManual__cardLink:focus-visible .post-card__meta span {
  color: var(--white) !important;
}

.c-newsManual .c-newsManual__cardLink:hover .post-card__meta-sep,
.c-newsManual .c-newsManual__cardLink:focus-visible .post-card__meta-sep {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* Final manual-news hover guard: the whole card, including media, turns dark. */
.c-newsManual .post-card__media {
  position: relative;
  background: var(--black);
}

.c-newsManual .post-card__media img {
  opacity: 1;
  transition: opacity 170ms ease, transform 220ms ease;
}

.c-newsManual .post-card:hover .post-card__media img,
.c-newsManual .post-card:focus-within .post-card__media img,
.c-newsManual .c-newsManual__cardLink:hover .post-card__media img,
.c-newsManual .c-newsManual__cardLink:focus-visible .post-card__media img {
  opacity: 0 !important;
  transform: none !important;
}
