* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input, textarea, select, button {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.flex {
  display: flex;
}

.grid {
  display: grid;
}
.grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

.hidden {
  display: none;
}

.justify-start {
  justify-content: start;
}
.justify-end {
  justify-content: end;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.justify-around {
  justify-content: space-around;
}
.justify-evenly {
  justify-content: space-evenly;
}

.items-start {
  align-items: flex-start;
}
.items-end {
  align-items: flex-end;
}
.items-center {
  align-items: center;
}
.items-baseline {
  align-items: baseline;
}
.items-stretch {
  align-items: stretch;
}

.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-justify {
  text-align: justify;
}
.text-start {
  text-align: start;
}
.text-end {
  text-align: end;
}

.place-items-start {
  place-items: start;
}
.place-items-end {
  place-items: end;
}
.place-items-center {
  place-items: center;
}
.place-items-baseline {
  place-items: baseline;
}
.place-items-stretch {
  place-items: stretch;
}

.gap-10 {
  gap: 10px;
}
.gap-20 {
  gap: 20px;
}
.gap-30 {
  gap: 30px;
}

.shrink {
  flex-shrink: 1;
}
.shrink-0 {
  flex-shrink: 0;
}

.w-full {
  width: 100%;
}

.h-screen {
  height: 100vh;
}

.cms-button {
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
  background: #181818;
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  transition: all 0.3s ease;
}
.cms-button:hover {
  color: white;
  background: hsl(0, 0%, -0.5882352941%);
}

.cms-title {
  width: 100%;
  padding: 80px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
@media (max-width: 480px) {
  .cms-title {
    padding: 50px 15px;
  }
}
.cms-title__container {
  max-width: 850px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.cms-title__container h1 {
  font-size: 32px;
  font-weight: 600;
}
@media (max-width: 480px) {
  .cms-title__container h1 {
    font-size: 28px;
  }
}
.cms-title__container span {
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
}
@media (max-width: 480px) {
  .cms-title__container span {
    font-size: 14px;
  }
}

.cms-category {
  width: 100%;
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 480px) {
  .cms-category {
    padding: 0px 15px;
    margin-bottom: 50px;
  }
}
.cms-category__container {
  width: 100%;
  max-width: 1240px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 480px) {
  .cms-category__container {
    width: 100%;
  }
}
.cms-category__wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 480px) {
  .cms-category__wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
@media (max-width: 480px) {
  .cms-category__wrapper.mobile-1cols {
    grid-template-columns: repeat(1, 1fr);
  }
}

.cms-team {
  width: 100%;
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 480px) {
  .cms-team {
    padding: 0px 15px;
    margin-bottom: 50px;
  }
}
.cms-team__container {
  width: 100%;
  max-width: 1240px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 480px) {
  .cms-team__container {
    width: 100%;
  }
}
.cms-team__wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media (max-width: 480px) {
  .cms-team__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

.cms-contact {
  width: 100%;
  padding: 40px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 480px) {
  .cms-contact {
    padding: 20px 15px;
  }
}
.cms-contact__container {
  width: 100%;
  max-width: 1240px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 480px) {
  .cms-contact__container {
    width: 100%;
  }
}
.cms-contact__wrapper {
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 50px 50px 0 50px;
  gap: 60px;
}
@media (max-width: 480px) {
  .cms-contact__wrapper {
    flex-direction: column;
    padding: 0px;
    gap: 30px;
    margin-top: 20px;
  }
}
.cms-contact__wrapper-text {
  display: flex;
  flex-direction: column;
}
.cms-contact__wrapper-text h1 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
}
@media (max-width: 480px) {
  .cms-contact__wrapper-text h1 {
    font-size: 24px;
  }
}
.cms-contact__wrapper-text h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}
@media (max-width: 480px) {
  .cms-contact__wrapper-text h4 {
    font-size: 18px;
  }
}
.cms-contact__wrapper-form {
  padding: 40px;
  border: 1px solid #dcdee3;
  background: white;
  border-radius: 14px;
  width: 650px;
  margin-top: -100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 480px) {
  .cms-contact__wrapper-form {
    width: 100%;
    margin-top: 0px;
    padding: 20px;
  }
}
.cms-contact__wrapper-form > h3 {
  font-size: 26px;
  font-weight: 600;
}
.cms-contact__wrapper-form > button {
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
  background: #181818;
  color: white;
}
.cms-contact__items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
.cms-contact__items > li {
  display: flex;
  gap: 10px;
  align-items: center;
}
.cms-contact__items > li i {
  width: 65px;
  height: 65px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #181818;
  background: rgba(24, 24, 24, 0.1);
  flex-shrink: 0;
  font-size: 30px;
}
.cms-contact__items > li div {
  display: flex;
  flex-direction: column;
}
.cms-contact__items > li div > span:first-child {
  font-size: 12px;
  font-weight: 300;
  opacity: 0.8;
}
.cms-contact__social {
  display: flex;
  gap: 15px;
}
.cms-contact__social li {
  display: flex;
}
.cms-contact__social a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white !important;
  transition: all 0.3s ease;
}
.cms-contact__social a.uil-facebook-f {
  background: #3b5998;
}
.cms-contact__social a.uil-instagram {
  background: #e4405f;
}
.cms-contact__social a.uil-youtube {
  background: #cd201f;
}
.cms-contact__social a.uil-twitter-alt {
  background: #55acee;
}
.cms-contact__social a.fa-x-twitter {
  background: #262829;
}
.cms-contact__social a.uil-linkedin-alt {
  background: #0077b5;
}
.cms-contact__social a:hover {
  transform: scale(1.1);
}
.cms-contact__map {
  width: 100%;
  height: auto;
  aspect-ratio: 3/1;
  border-radius: 14px;
  overflow: hidden;
}
@media (max-width: 480px) {
  .cms-contact__map {
    aspect-ratio: 1/1;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .cms-contact__map {
    aspect-ratio: 1/1;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .cms-contact__map {
    aspect-ratio: 1/1;
  }
}
.cms-contact__form-row {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.cms-contact__form-row label {
  font-size: 12px;
  font-weight: 300;
  opacity: 0.8;
}
.cms-contact__form-row input, .cms-contact__form-row textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #dcdee3;
  border-radius: 10px;
  outline: none;
  transition: all 0.3s ease;
}
.cms-contact__form-row input:focus, .cms-contact__form-row textarea:focus {
  border-color: #181818;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
}
.cms-contact__form-row textarea {
  height: 150px;
  resize: none;
}

.cms-page {
  width: 100%;
  padding: 40px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 480px) {
  .cms-page {
    padding: 20px 15px;
  }
}
.cms-page__container {
  width: 100%;
  max-width: 1240px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 480px) {
  .cms-page__container {
    width: 100%;
  }
}
.cms-page__container svg.not-found {
  max-height: 450px;
}
.cms-page__title {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.cms-page__title h1 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 5px;
}
.cms-page__title span {
  font-size: 18px;
  font-weight: 300;
}
.cms-page__title span img {
  max-width: 100% !important;
  height: auto !important;
}
.cms-page__img {
  width: calc(100% + 170px);
  margin-left: -85px;
  border-radius: 14px;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16/8;
  background: #dcdee3;
}
@media (max-width: 480px) {
  .cms-page__img {
    width: 100%;
    margin-left: 0px;
  }
}
.cms-page__content {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  line-height: 1.72;
  font-size: 17px;
}
@media (max-width: 480px) {
  .cms-page__content {
    max-width: 100%;
    font-size: 16px;
  }
}
.cms-page__content p {
  margin: 0 0 18px;
}
.cms-page__content p:last-child {
  margin-bottom: 0;
}
.cms-page__content img {
  max-width: 100% !important;
  height: auto !important;
}

.cms-post {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.cms-post__img {
  width: 100%;
  display: flex;
  margin-bottom: 10px;
}
.cms-post__img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16/10;
  background: #dcdee3;
  border: 1px solid #dcdee3;
  border-radius: 14px;
}
.cms-post__category {
  font-size: 14px;
  font-weight: 300;
  opacity: 0.5;
  transition: all 0.3s ease;
}
.cms-post__category:hover {
  opacity: 1;
}
.cms-post > h2 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
}
@media (max-width: 480px) {
  .cms-post > h2 {
    font-size: 16px;
  }
}

.cms-user {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.cms-user img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 13/16;
  background: #dcdee3;
  border: 1px solid #dcdee3;
  border-radius: 14px;
  margin-bottom: 10px;
}
.cms-user > h2 {
  font-size: 18px;
  font-weight: 600;
}
@media (max-width: 480px) {
  .cms-user > h2 {
    font-size: 16px;
  }
}
.cms-user > span {
  font-weight: 300;
  font-size: 14px;
}

.cms-comment {
  width: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  border: 1px solid #dcdee3;
}
.cms-comment__header {
  padding: 15px 20px;
  border-bottom: 1px solid #dcdee3;
  display: flex;
  font-size: 14px;
  gap: 10px;
  align-items: center;
}
.cms-comment__header span {
  font-weight: 700;
}
.cms-comment__text {
  padding: 20px;
  font-size: 18px;
  line-height: 1.5;
  font-style: italic;
}
@media (max-width: 480px) {
  .cms-comment__text {
    font-size: 16px;
    padding: 15px;
  }
}

.cms-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.cms-pagination a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid #dcdee3;
  opacity: 0.8;
  transition: all 0.3s ease;
}
.cms-pagination a:hover {
  opacity: 1;
}
.cms-pagination a.active {
  background: #181818;
  color: white;
  border: none;
  opacity: 1;
}

.cms-gallery {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cms-gallery__item {
  display: flex;
}
.cms-gallery__item img {
  border-radius: 14px;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1/1;
  background: #dcdee3;
  border: 1px solid #dcdee3;
}

.cms-form {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 20px;
}
.cms-form h2 {
  font-size: 24px;
  font-weight: 600;
}
.cms-form button {
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
  background: #181818;
  color: white;
}
.cms-form__item {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.cms-form__item label {
  font-size: 12px;
  font-weight: 300;
  opacity: 0.8;
}
.cms-form__item input, .cms-form__item textarea, .cms-form__item select {
  width: 100%;
  padding: 10px;
  border: 1px solid #dcdee3;
  border-radius: 10px;
  outline: none;
  transition: all 0.3s ease;
}
.cms-form__item input:focus, .cms-form__item textarea:focus, .cms-form__item select:focus {
  border-color: #181818;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
}
.cms-form__item input:required, .cms-form__item textarea:required, .cms-form__item select:required {
  border-left: 2px solid #cd201f;
}
.cms-form__item textarea {
  height: 150px;
  resize: none;
}

.cms-product {
  width: 100%;
  padding: 40px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 480px) {
  .cms-product {
    padding: 20px 15px;
  }
}
.cms-product__container {
  width: 100%;
  max-width: 1240px;
  display: flex;
  gap: 40px;
}
@media (max-width: 480px) {
  .cms-product__container {
    width: 100%;
    flex-direction: column;
    gap: 30px;
  }
}
.cms-product__gallery {
  width: 610px;
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  gap: 15px;
  align-self: flex-start;
  position: sticky;
  top: 150px;
}
@media (max-width: 480px) {
  .cms-product__gallery {
    width: 100%;
    position: relative;
    top: 0px;
  }
}
.cms-product__top {
  width: 100%;
  display: flex;
  overflow: hidden;
}
.cms-product__top-wrapper {
  display: flex;
}
.cms-product__top-img {
  display: flex;
  width: 100%;
}
.cms-product__top-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16/10;
  background: #dcdee3;
  border: 1px solid #dcdee3;
  border-radius: 14px;
}
.cms-product__bottom {
  width: 100%;
  display: flex;
  overflow: hidden;
}
.cms-product__bottom-wrapper {
  display: flex;
}
.cms-product__bottom-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16/10;
  background: #dcdee3;
  border: 1px solid #dcdee3;
  border-radius: 7px;
  cursor: pointer;
}
.cms-product__bottom-img.swiper-slide-thumb-active {
  border-color: #181818;
}
.cms-product__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cms-product__content h1 {
  font-size: 32px;
  font-weight: 600;
}
@media (max-width: 480px) {
  .cms-product__content h1 {
    font-size: 28px;
  }
}
.cms-product__content-description {
  font-size: 18px;
  font-weight: 300;
}
.cms-product__content-description p:last-child {
  margin-bottom: 0px;
}
.cms-product__item {
  background: white;
  display: flex;
  flex-direction: column;
  border: 1px solid #dcdee3;
  border-radius: 7px;
  overflow: hidden;
  margin-top: 10px;
}
.cms-product__item.active h2 i {
  transform: rotate(180deg);
}
.cms-product__item.active .cms-product__item-content {
  max-height: 1000px;
  padding: 20px;
  line-height: 1.5;
}
.cms-product__item.active .cms-product__item-content h1 {
  font-size: 24px;
  font-weight: 600;
}
.cms-product__item.active .cms-product__item-content h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
.cms-product__item.active .cms-product__item-content h3, .cms-product__item.active .cms-product__item-content h4, .cms-product__item.active .cms-product__item-content h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}
.cms-product__item.active .cms-product__item-content ul {
  margin: 15px;
}
.cms-product__item.active .cms-product__item-content img {
  max-width: 100% !important;
  width: auto !important;
  height: auto !important;
}
.cms-product__item h2 {
  padding: 10px 20px;
  font-size: 18px;
  font-weight: 600;
  border-bottom: 1px solid #dcdee3;
  color: #181818;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.cms-product__item h2 i {
  transition: all 0.3s ease;
}
.cms-product__item-content {
  padding: 0px;
  max-height: 0px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.cms-catalogs {
  width: 100%;
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 480px) {
  .cms-catalogs {
    padding: 0px 15px;
    margin-bottom: 50px;
  }
}
.cms-catalogs__container {
  width: 100%;
  max-width: 1240px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 480px) {
  .cms-catalogs__container {
    width: 100%;
  }
}
.cms-catalogs__wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media (max-width: 480px) {
  .cms-catalogs__wrapper {
    grid-template-columns: 1fr;
  }
}

.cms-catalog {
  display: flex;
  width: 100%;
  border: 1px solid #dcdee3;
  border-radius: 14px;
  padding: 20px;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}
.cms-catalog:hover {
  border: 1px solid #181818;
  background: rgba(24, 24, 24, 0.1);
}
.cms-catalog i {
  width: 60px;
  height: 60px;
  font-size: 30px;
  color: #181818;
  background: rgba(24, 24, 24, 0.1);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cms-catalog h2 {
  font-size: 22px;
  font-weight: 600;
}

.cms-img-content {
  width: 100%;
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 480px) {
  .cms-img-content {
    padding: 0px 15px;
    margin-bottom: 50px;
  }
}
.cms-img-content__container {
  width: 100%;
  max-width: 1240px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 480px) {
  .cms-img-content__container {
    width: 100%;
  }
}
.cms-img-content__item {
  width: 100%;
  display: flex;
  gap: 10px;
}
@media (max-width: 480px) {
  .cms-img-content__item {
    flex-direction: column !important;
  }
}
.cms-img-content__item:hover .cms-img-content__item-text {
  background: #181818;
  color: white;
}
.cms-img-content__item:nth-child(2n) {
  flex-direction: row-reverse;
}
.cms-img-content__item-img {
  width: calc(50% - 5px);
  height: auto;
  display: flex;
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .cms-img-content__item-img {
    width: 100%;
  }
}
.cms-img-content__item-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 3/2;
  background: #dcdee3;
  border: 1px solid #dcdee3;
  border-radius: 14px;
}
.cms-img-content__item-text {
  width: calc(50% - 5px);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 40px;
  font-size: 18px;
  background: rgba(24, 24, 24, 0.03);
  border-radius: 14px;
  transition: all 0.3s ease;
}
@media (max-width: 480px) {
  .cms-img-content__item-text {
    width: 100%;
    padding: 20px;
    font-size: 16px;
  }
}
.cms-img-content__item-text h1,
.cms-img-content__item-text h2,
.cms-img-content__item-text h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
}
@media (max-width: 480px) {
  .cms-img-content__item-text h1,
  .cms-img-content__item-text h2,
  .cms-img-content__item-text h3 {
    font-size: 18px;
  }
}

:root {
  --sena-dark: #181818;
  --sena-text: #343434;
  --sena-muted: #8a8a8a;
  --sena-line: rgba(0, 0, 0, 0.1);
  --sena-soft: #eaebef;
  --sena-white: #ffffff;
  --sena-header-height: 120px;
  --sena-hero-height: calc(100vh - var(--sena-header-height));
  --sena-hero-height-dvh: calc(100dvh - var(--sena-header-height));
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--sena-text);
  background: #fff;
}

body.overflow-hidden {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

strong {
  font-weight: 700;
}

.sena-home {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.js-reveal {
  opacity: 0;
  transform: translate3d(0, 35px, 0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.js-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.sena-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 25px;
  border: 1px solid transparent;
  border-radius: 58px;
  background: var(--sena-dark);
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
}
.sena-button i {
  font-size: 15px;
  transition: transform 0.3s ease;
}
.sena-button:hover {
  background: #2b2b2b;
  color: #fff;
}
.sena-button:hover i {
  transform: translateX(3px);
}
.sena-button--dark {
  background: var(--sena-dark);
  color: #fff;
}
.sena-button--dark:hover {
  background: #303030;
}
.sena-button--ghost {
  border-color: rgba(255, 255, 255, 0.7);
  background: transparent;
  color: #fff;
}
.sena-button--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}
.sena-button--white {
  background: #fff;
  color: var(--sena-text);
  border-color: transparent;
}
.sena-button--white:hover {
  background: var(--sena-soft);
  color: var(--sena-text);
}
.sena-button--light {
  background: var(--sena-soft);
  color: var(--sena-text);
  border-color: transparent;
}
.sena-button--light:hover {
  background: var(--sena-dark);
  color: #fff;
}

.sena-section-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 30px;
}
.sena-section-head h2 {
  margin: 0;
  font-size: 68px;
  font-weight: 600;
  line-height: 1;
  color: var(--sena-text);
}

.sena-page-title {
  width: 100%;
  text-align: left;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  padding: 52px 0 44px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}
.sena-page-title__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.sena-page-title__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sena-page-title__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(112deg, rgba(21, 21, 21, 0.74) 0%, rgba(21, 21, 21, 0.55) 42%, rgba(21, 21, 21, 0.24) 100%);
}
.sena-page-title__container {
  width: calc(100% - 24px);
  max-width: 1240px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.sena-page-title__kicker {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.72);
  color: #444;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.sena-page-title h1 {
  margin: 0;
  max-width: min(900px, 100%);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 600;
  color: #2f3237;
}
.sena-page-title__description {
  margin: 0;
  max-width: min(780px, 100%);
  font-size: 16px;
  line-height: 1.72;
  color: #585858;
}
.sena-page-title.has-bg {
  padding: 86px 0 78px;
  border-bottom: none;
  background: #151515;
}
.sena-page-title.has-bg .sena-page-title__kicker {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.34);
  color: #fff;
}
.sena-page-title.has-bg h1,
.sena-page-title.has-bg .sena-page-title__description {
  color: #fff;
}
.sena-page-title.has-bg .sena-page-title__description {
  color: rgba(255, 255, 255, 0.88);
}

.sena-category-title {
  width: 100%;
  text-align: left;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  padding: 52px 0 44px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}
.sena-category-title__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.sena-category-title__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sena-category-title__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(112deg, rgba(21, 21, 21, 0.74) 0%, rgba(21, 21, 21, 0.55) 42%, rgba(21, 21, 21, 0.24) 100%);
}
.sena-category-title__container {
  width: calc(100% - 24px);
  max-width: 1240px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.sena-category-title__kicker {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.72);
  color: #444;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.sena-category-title h1 {
  margin: 0;
  max-width: min(900px, 100%);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 600;
  color: #2f3237;
}
.sena-category-title__description {
  width: 100%;
  max-width: min(860px, 100%);
  font-size: 16px;
  line-height: 1.72;
  color: #585858;
}
.sena-category-title__description > :first-child {
  margin-top: 0;
}
.sena-category-title__description > :last-child {
  margin-bottom: 0;
}
.sena-category-title__description h1,
.sena-category-title__description h2,
.sena-category-title__description h3,
.sena-category-title__description h4,
.sena-category-title__description h5,
.sena-category-title__description h6 {
  margin: 0 0 12px;
  max-width: min(900px, 100%);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 600;
  color: #2f3237;
}
.sena-category-title__description h1 {
  font-size: clamp(34px, 4vw, 56px);
}
.sena-category-title__description h2 {
  font-size: clamp(30px, 3.4vw, 46px);
}
.sena-category-title__description h3 {
  font-size: clamp(26px, 3vw, 38px);
}
.sena-category-title__description h4 {
  font-size: clamp(22px, 2.4vw, 32px);
}
.sena-category-title__description h5 {
  font-size: clamp(19px, 2vw, 26px);
}
.sena-category-title__description h6 {
  font-size: clamp(17px, 1.7vw, 22px);
}
.sena-category-title__description p,
.sena-category-title__description ul,
.sena-category-title__description ol,
.sena-category-title__description blockquote {
  margin: 0 0 16px;
}
.sena-category-title__description ul {
  padding-left: 20px;
  list-style: disc;
}
.sena-category-title__description ol {
  padding-left: 20px;
  list-style: decimal;
}
.sena-category-title__description li {
  list-style: inherit;
}
.sena-category-title__description img {
  max-width: 100% !important;
  height: auto !important;
}
.sena-category-title.has-bg {
  padding: 86px 0 78px;
  border-bottom: none;
  background: #151515;
}
.sena-category-title.has-bg .sena-category-title__kicker {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.34);
  color: #fff;
}
.sena-category-title.has-bg h1,
.sena-category-title.has-bg .sena-category-title__description h1,
.sena-category-title.has-bg .sena-category-title__description h2,
.sena-category-title.has-bg .sena-category-title__description h3,
.sena-category-title.has-bg .sena-category-title__description h4,
.sena-category-title.has-bg .sena-category-title__description h5,
.sena-category-title.has-bg .sena-category-title__description h6 {
  color: #fff;
}
.sena-category-title.has-bg .sena-category-title__description,
.sena-category-title.has-bg .sena-category-title__description p,
.sena-category-title.has-bg .sena-category-title__description ul,
.sena-category-title.has-bg .sena-category-title__description ol,
.sena-category-title.has-bg .sena-category-title__description blockquote {
  color: rgba(255, 255, 255, 0.88);
}

.sena-header {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 15px;
  position: sticky;
  top: 0;
  z-index: 250;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: none;
}
.sena-header__container {
  width: 100%;
  max-width: 100%;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.sena-header__logo {
  width: 167px;
  flex-shrink: 0;
  display: flex;
}
.sena-header__nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sena-header__menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
}
.sena-header__item {
  position: relative;
}
.sena-header__item--mobile-only {
  display: none;
}
.sena-header__item--dropdown {
  padding-bottom: 12px;
  margin-bottom: -12px;
}
.sena-header__item--dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 16px;
}
.sena-header__item--dropdown > .sena-header__link i {
  font-size: 16px;
  margin-top: 1px;
  transition: transform 0.3s ease;
}
.sena-header__item--dropdown:hover > .sena-header__link i {
  transform: rotate(180deg);
}
.sena-header__item--dropdown:hover > .sena-header__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  pointer-events: auto;
}
.sena-header__item--dropdown:hover > .sena-header__dropdown--small {
  transform: translate(0, 0);
}
.sena-header__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 18px;
  font-weight: 400;
  color: var(--sena-dark);
  white-space: nowrap;
}
.sena-header__link:hover {
  color: #666;
}
.sena-header__dropdown {
  width: 540px;
  position: absolute;
  left: 50%;
  top: calc(100% + 10px);
  transform: translate(-50%, 14px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  background: #fff;
  padding: 14px;
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.32s ease;
}
.sena-header__dropdown--small {
  width: 280px;
  left: 0;
  transform: translate(0, 14px);
}
.sena-header__dropdown-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.sena-header__dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px;
  border-radius: 12px;
}
.sena-header__dropdown-item span {
  font-size: 14px;
  line-height: 1.4;
  color: var(--sena-text);
}
.sena-header__dropdown-item:hover {
  background: #f5f5f5;
}
.sena-header__dropdown-item:hover .sena-header__dropdown-thumb img {
  transform: scale(1.08);
}
.sena-header__dropdown-thumb {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.sena-header__dropdown-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.sena-header__dropdown-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sena-header__dropdown-link {
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--sena-text);
}
.sena-header__dropdown-link:hover {
  background: #f2f2f2;
  color: #111;
}
.sena-header__dropdown-empty {
  display: block;
  padding: 10px 12px;
  font-size: 13px;
  color: var(--sena-muted);
}
.sena-header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.sena-header__search-toggle {
  width: 52px;
  height: 52px;
  border: 1px solid var(--sena-dark);
  border-radius: 45px;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--sena-dark);
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.sena-header__search-toggle:hover {
  background: var(--sena-dark);
  color: #fff;
}
.sena-header__mobile-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  background: transparent;
  color: var(--sena-dark);
  font-size: 24px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  display: none;
}

body:not(.is-home) .sena-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.sena-search {
  position: fixed;
  inset: 0;
  z-index: 320;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.28s ease;
}
.sena-search.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.sena-search__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.sena-search__box {
  width: min(760px, 100vw - 30px);
  border-radius: 18px;
  background: #fff;
  padding: 24px;
  position: relative;
  transform: translateY(14px) scale(0.985);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  max-height: calc(100vh - 48px);
  overflow: auto;
}
.sena-search.is-open .sena-search__box {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.sena-search__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.sena-search__head h4 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  color: var(--sena-text);
}
.sena-search__head button {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 999px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
}
.sena-search__head button:hover {
  background: #f0f0f0;
}
.sena-search__form {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sena-search__form input {
  flex: 1;
  height: 56px;
  min-height: 56px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 999px;
  padding: 0 22px;
  font-size: 16px;
  line-height: 1.2;
  color: var(--sena-text);
}
.sena-search__form input:focus {
  outline: none;
  border-color: var(--sena-dark);
}

body.is-search-page .sena-page-title {
  padding: 50px 0 28px;
  border-bottom: none;
  background: transparent;
}
body.is-search-page .sena-page-title__container {
  width: calc(100% - 24px);
  max-width: 1240px;
  align-items: flex-start;
  text-align: left;
  gap: 16px;
}
body.is-search-page .sena-page-title__container h1 {
  margin: 0;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  color: #2f3237;
}
body.is-search-page .sena-page-title__container .sena-page-title__description {
  max-width: 760px;
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: #5b5b5b;
}
body.is-search-page .sena-category-title {
  padding: 50px 0 28px;
  border-bottom: none;
  background: transparent;
}
body.is-search-page .sena-category-title__container {
  width: calc(100% - 24px);
  max-width: 1240px;
  align-items: flex-start;
  text-align: left;
  gap: 16px;
}
body.is-search-page .sena-category-title__container h1 {
  margin: 0;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  color: #2f3237;
}
body.is-search-page .sena-category-title__description {
  max-width: 760px;
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: #5b5b5b;
}
body.is-search-page .cms-category {
  margin-bottom: 90px;
}
body.is-search-page .cms-category__container {
  width: 100%;
  max-width: 1240px;
}

.sena-search-page__form {
  width: min(700px, 100%);
  display: flex;
  align-items: center;
  gap: 10px;
}
.sena-search-page__form input {
  flex: 1;
  height: 56px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 999px;
  padding: 0 22px;
  font-size: 16px;
  color: #222;
}
.sena-search-page__form input:focus {
  outline: none;
  border-color: #111;
}
.sena-search-page__form .sena-button {
  min-width: 132px;
  min-height: 56px;
  white-space: nowrap;
}
.sena-search-page__results {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.sena-search-page__excerpt {
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 1.6;
  color: #595959;
}
.sena-search-page__empty {
  grid-column: 1/-1;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 16px;
  background: #f8f8f8;
  min-height: 180px;
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.sena-search-page__empty strong {
  font-size: 24px;
  line-height: 1.2;
  color: #2f3237;
}
.sena-search-page__empty span {
  font-size: 16px;
  line-height: 1.55;
  color: #646464;
}

.sena-category-seo {
  width: 100%;
  padding: 0 15px 45px;
  display: flex;
  justify-content: center;
}
.sena-category-seo__container {
  width: 100%;
  max-width: 1240px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 24px;
}
.sena-category-seo__content {
  width: 100%;
  color: #626262;
  font-size: 14px;
  line-height: 1.74;
}
.sena-category-seo__content h2 {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 600;
  color: #343434;
}
.sena-category-seo__content p {
  margin: 0 0 12px;
}
.sena-category-seo__content p:last-child {
  margin-bottom: 0;
}
.sena-category-seo__content ul,
.sena-category-seo__content ol {
  margin: 0 0 12px 18px;
  padding: 0;
}
.sena-category-seo__content li {
  margin-bottom: 6px;
}
.sena-category-seo__content a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.sena-category-seo__content img {
  width: auto;
  max-width: 100% !important;
  height: auto !important;
  border-radius: 10px;
  margin: 10px 0;
}

.sena-not-found {
  width: 100%;
  padding: 86px 0 110px;
  background: #f7f7f7;
}
.sena-not-found__container {
  width: min(1180px, 100% - 40px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 440px);
  align-items: stretch;
  gap: 26px;
}
.sena-not-found__content, .sena-not-found__panel {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
}
.sena-not-found__content {
  min-height: 540px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 5vw, 72px);
}
.sena-not-found__code {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 20px;
  padding: 7px 13px;
  border-radius: 99px;
  background: var(--sena-dark);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}
.sena-not-found h1 {
  max-width: 660px;
  margin: 0 0 18px;
  color: var(--sena-dark);
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0;
}
.sena-not-found p {
  max-width: 640px;
  margin: 0;
  color: #666;
  font-size: 17px;
  line-height: 1.75;
}
.sena-not-found__search {
  width: min(100%, 620px);
  margin-top: 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}
.sena-not-found__search input {
  width: 100%;
  min-width: 0;
  height: 52px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 6px;
  background: #fff;
  padding: 0 16px;
  color: var(--sena-dark);
  font-size: 15px;
  outline: none;
}
.sena-not-found__search input:focus {
  border-color: var(--sena-dark);
}
.sena-not-found__search .sena-button {
  border-radius: 6px;
  padding-inline: 22px;
  white-space: nowrap;
}
.sena-not-found__actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.sena-not-found__actions .sena-button--ghost {
  border-color: rgba(0, 0, 0, 0.16);
  color: var(--sena-dark);
}
.sena-not-found__actions .sena-button--ghost:hover {
  background: var(--sena-dark);
  border-color: var(--sena-dark);
  color: #fff;
}
.sena-not-found__panel {
  padding: 24px;
}
.sena-not-found__panel-kicker {
  display: block;
  margin-bottom: 14px;
  color: #777;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}
.sena-not-found__links {
  display: grid;
  gap: 10px;
}
.sena-not-found__link {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 3px 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  background: #fafafa;
}
.sena-not-found__link > span {
  grid-row: span 2;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--sena-dark);
  color: #fff;
  font-size: 20px;
}
.sena-not-found__link strong {
  color: var(--sena-dark);
  font-size: 16px;
  line-height: 1.25;
}
.sena-not-found__link small {
  color: #777;
  font-size: 13px;
  line-height: 1.45;
}
.sena-not-found__link:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 0, 0, 0.18);
  background: #fff;
}
.sena-not-found__products {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.sena-not-found__products h2 {
  margin: 0 0 14px;
  color: var(--sena-dark);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}
.sena-not-found__products div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.sena-not-found__products a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 99px;
  background: #fff;
  color: #555;
  font-size: 13px;
  line-height: 1.2;
}
.sena-not-found__products a:hover {
  background: var(--sena-dark);
  border-color: var(--sena-dark);
  color: #fff;
}

@media (max-width: 980px) {
  .sena-not-found {
    padding: 56px 0 76px;
  }
  .sena-not-found__container {
    grid-template-columns: 1fr;
  }
  .sena-not-found__content {
    min-height: auto;
  }
}
@media (max-width: 640px) {
  .sena-not-found {
    padding: 34px 0 54px;
  }
  .sena-not-found__container {
    width: min(100% - 24px, 1180px);
    gap: 14px;
  }
  .sena-not-found__content, .sena-not-found__panel {
    border-radius: 6px;
  }
  .sena-not-found__content, .sena-not-found__panel {
    padding: 20px;
  }
  .sena-not-found h1 {
    font-size: 34px;
  }
  .sena-not-found p {
    font-size: 15px;
    line-height: 1.65;
  }
  .sena-not-found__search {
    grid-template-columns: 1fr;
  }
  .sena-not-found__search .sena-button {
    width: 100%;
  }
  .sena-not-found__actions .sena-button {
    width: 100%;
  }
  .sena-not-found__link {
    grid-template-columns: 38px minmax(0, 1fr);
  }
  .sena-not-found__link > span {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }
}
.sena-hero {
  width: 100%;
  padding: 0;
  display: flex;
  justify-content: center;
  overflow: hidden;
}
.sena-hero__slider {
  width: 100vw;
  max-width: 100vw;
  height: var(--sena-hero-height);
  height: var(--sena-hero-height-dvh);
  min-height: 520px;
  border-radius: 0;
  overflow: hidden;
  background: #181818;
  position: relative;
}
.sena-hero__wrapper {
  height: 100%;
}
.sena-hero__slide {
  width: 100%;
  height: 100%;
  min-height: 100%;
  position: relative;
  display: flex;
  align-items: flex-end;
}
.sena-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}
.sena-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 38%, rgba(0, 0, 0, 0.82) 100%);
}
.sena-hero__content {
  width: 100%;
  max-width: 850px;
  padding: 0 50px 50px;
  position: relative;
  z-index: 2;
}
.sena-hero__kicker {
  display: block;
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
  color: #fff;
}
.sena-hero__title {
  margin: 0 0 14px;
  font-size: 68px;
  font-weight: 600;
  line-height: 1;
  color: #fff;
}
.sena-hero__title span {
  font-weight: 300;
}
.sena-hero__description {
  margin: 0 0 24px;
  font-size: 28px;
  font-weight: 300;
  line-height: 1.5;
  color: #fff;
}
.sena-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.sena-hero__arrow {
  width: 55px;
  height: 55px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 30px;
  position: absolute;
  top: 50%;
  z-index: 4;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
.sena-hero__arrow:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.28);
}
.sena-hero__arrow--prev {
  left: 30px;
}
.sena-hero__arrow--next {
  right: 30px;
}
.sena-hero__pagination {
  width: max-content !important;
  position: absolute;
  left: 50% !important;
  transform: translateX(-50%);
  bottom: 20px !important;
  z-index: 4;
  display: flex;
  gap: 8px;
}
.sena-hero__pagination .swiper-pagination-bullet {
  width: 24px;
  height: 6px;
  margin: 0 !important;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  opacity: 1;
  transition: all 0.3s ease;
}
.sena-hero__pagination .swiper-pagination-bullet-active {
  width: 48px;
  background: #fff;
}

.sena-intro {
  width: 100%;
  padding: 110px 20px 130px;
  display: flex;
  justify-content: center;
  background: transparent;
}
.sena-intro__container {
  width: 100%;
  max-width: 1101px;
}
.sena-intro__text {
  margin: 0;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  --intro-progress: 0;
  opacity: calc(0.3 + var(--intro-progress) * 0.7);
  transform: translate3d(0, calc((1 - var(--intro-progress)) * 20px), 0);
  color: #1e1e1e;
  transition: opacity 0.16s linear, transform 0.16s linear;
}
.sena-intro__word {
  --word-progress: 0;
  color: rgb(calc(255 - var(--word-progress) * 225), calc(255 - var(--word-progress) * 225), calc(255 - var(--word-progress) * 225));
  transition: color 0.16s linear;
}

.sena-categories,
.sena-featured,
.sena-testimonials,
.sena-promos,
.sena-tabs,
.sena-references {
  width: 100%;
  display: flex;
  justify-content: center;
}
.sena-categories__container,
.sena-featured__container,
.sena-testimonials__container,
.sena-promos__container,
.sena-tabs__container,
.sena-references__container {
  width: 100%;
  max-width: 1240px;
}

.sena-categories {
  padding: 0 0 90px;
}
.sena-categories__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.sena-category-card {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.sena-category-card__image {
  width: 100%;
  height: 350px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--sena-line);
}
.sena-category-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.sena-category-card__footer {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.sena-category-card__footer h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 500;
  color: var(--sena-text);
}
.sena-category-card__footer span {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  border: none;
  background: var(--sena-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--sena-dark);
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.sena-category-card:hover .sena-category-card__image img {
  transform: scale(1.06);
}
.sena-category-card:hover .sena-category-card__footer span {
  background: var(--sena-dark);
  color: #fff;
  border-color: var(--sena-dark);
}

.sena-cta-band {
  width: 100%;
  padding: 0 0 90px;
  display: flex;
  justify-content: center;
}
.sena-cta-band__container {
  width: 100%;
  max-width: 1240px;
  min-height: 100px;
  border-radius: 16px;
  overflow: hidden;
  background: #1f1f1f;
  position: relative;
  display: flex;
  align-items: center;
}
.sena-cta-band__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}
.sena-cta-band__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.35) 48%, rgba(0, 0, 0, 0.55) 100%);
}
.sena-cta-band__content {
  width: 100%;
  position: relative;
  z-index: 2;
  padding: 18px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.sena-cta-band__content p {
  margin: 0;
  font-size: 28px;
  line-height: 1.5;
  color: #fff;
}

.sena-featured {
  padding: 0 0 120px;
}
.sena-featured__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.sena-featured-card {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.sena-featured-card__image {
  height: 350px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--sena-line);
}
.sena-featured-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.sena-featured-card__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.sena-featured-card__info h3 {
  margin: 0 0 4px;
  font-size: 22px;
  line-height: 1.35;
  color: var(--sena-text);
}
.sena-featured-card__info span {
  display: block;
  font-size: 14px;
  line-height: 1;
  color: #8f8f8f;
}
.sena-featured-card__info > i {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  border: none;
  background: var(--sena-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 24px;
  transition: all 0.3s ease;
}
.sena-featured-card:hover .sena-featured-card__image img {
  transform: scale(1.06);
}
.sena-featured-card:hover .sena-featured-card__info > i {
  background: var(--sena-dark);
  color: #fff;
  border-color: var(--sena-dark);
}

.sena-story-stack {
  width: 100%;
  min-height: 300vh;
  position: relative;
  display: block;
  padding: 0;
  margin: 0 0 70px;
}
.sena-story-stack__sticky {
  width: 100%;
  height: 100vh;
  position: sticky;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 1;
}
.sena-story-stack__bg-list {
  position: absolute;
  inset: 0;
}
.sena-story-stack__bg-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
}
.sena-story-stack__bg-item.is-active {
  opacity: 1;
}
.sena-story-stack__bg-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}
.sena-story-stack__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}
.sena-story-stack__content {
  width: 100%;
  max-width: 1240px;
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  margin: -100vh auto 0;
}

.sena-story-block {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  --block-progress: 0;
}
.sena-story-block__inner {
  width: 100%;
  max-width: 950px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  opacity: calc(0.1 + var(--block-progress) * 0.9);
  transform: translate3d(0, calc((1 - var(--block-progress)) * 34px), 0);
  transition: opacity 0.2s linear, transform 0.2s linear;
}
.sena-story-block__inner h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
  color: #fff;
}
.sena-story-block__inner p,
.sena-story-block__inner .sena-story-block__text,
.sena-story-block__inner .sena-story-block__text p {
  margin: 0;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
}
.sena-story-block__inner .sena-story-block__text {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.sena-story-block__inner .sena-story-block__text p,
.sena-story-block__inner .sena-story-block__text ul,
.sena-story-block__inner .sena-story-block__text ol {
  margin: 0;
}
.sena-story-block__inner .sena-story-block__text ul,
.sena-story-block__inner .sena-story-block__text ol {
  padding-left: 28px;
}
.sena-story-block__inner .sena-story-block__text li {
  margin-bottom: 8px;
}
.sena-story-block__inner .sena-story-block__text a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.sena-story-block__inner .sena-button {
  align-self: flex-start;
  width: max-content;
  color: var(--sena-text);
}

.sena-testimonials {
  padding: 150px 0 70px;
}
.sena-testimonials__slider {
  overflow: hidden;
  padding-bottom: 54px;
}
.sena-testimonials__pagination {
  width: max-content !important;
  position: absolute;
  left: 50% !important;
  transform: translateX(-50%);
  bottom: 0 !important;
  display: flex;
  gap: 10px;
}
.sena-testimonials__pagination .swiper-pagination-bullet {
  width: 25px;
  height: 25px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: transparent;
  opacity: 1;
  margin: 0 !important;
  transition: all 0.3s ease;
}
.sena-testimonials__pagination .swiper-pagination-bullet-active {
  width: 60px;
  background: var(--sena-dark);
  border-color: var(--sena-dark);
}

.sena-testimonial {
  min-height: 325px;
  border: 1px solid var(--sena-line);
  border-radius: 16px;
  padding: 30px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}
.sena-testimonial__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.sena-testimonial__stars {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #f59e0b;
  font-size: 16px;
}
.sena-testimonial__google {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.sena-testimonial__google img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.sena-testimonial__text {
  margin: 0;
  font-size: 22px;
  line-height: 1.6;
  color: var(--sena-text);
}
.sena-testimonial__author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sena-testimonial__author img {
  width: 45px;
  height: 45px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid var(--sena-line);
}
.sena-testimonial__author strong {
  display: block;
  margin-bottom: 4px;
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  color: var(--sena-text);
}
.sena-testimonial__author span {
  display: block;
  font-size: 14px;
  line-height: 1;
  color: #7f7f7f;
}

.sena-promos {
  padding: 0 0 90px;
}
.sena-promos__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
  gap: 30px;
}

.sena-promo-card {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.sena-promo-card__image {
  width: 100%;
  height: 450px;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--sena-line);
}
.sena-promo-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.sena-promo-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.sena-promo-card__footer h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 500;
  color: var(--sena-text);
}
.sena-promo-card:hover .sena-promo-card__image img {
  transform: scale(1.06);
}

.sena-tabs {
  padding: 36px 0 110px;
}
.sena-tabs__container {
  position: relative;
  border-radius: 28px;
  background: #fff;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.12);
}
.sena-tabs__media {
  width: 100%;
  height: 380px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.sena-tabs__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.08) 45%, rgba(0, 0, 0, 0.28) 100%);
  z-index: 1;
  pointer-events: none;
}
.sena-tabs__media::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 66%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.82) 58%, #ffffff 100%);
  z-index: 2;
  pointer-events: none;
}
.sena-tabs__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.45s ease, transform 0.45s ease;
  z-index: 0;
}
.sena-tabs__image.is-active {
  opacity: 1;
  transform: scale(1);
}
.sena-tabs__nav {
  width: auto;
  max-width: 1330px;
  min-height: 74px;
  position: absolute;
  left: 50%;
  top: 26px;
  transform: translateX(-50%);
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  background: rgba(236, 236, 236, 0.84);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  overflow-x: auto;
  overflow-y: hidden;
  z-index: 4;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
}
.sena-tabs__nav::-webkit-scrollbar {
  display: none;
}
.sena-tabs__tab {
  border: none;
  border-radius: 999px;
  background: transparent;
  color: #2f3237;
  font-size: 18px;
  line-height: 1;
  font-weight: 400;
  padding: 16px 24px;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}
.sena-tabs__tab:hover {
  background: rgba(255, 255, 255, 0.6);
}
.sena-tabs__tab.is-active {
  background: #fff;
  color: #202225;
  font-weight: 600;
}
.sena-tabs__panels {
  width: 100%;
  min-height: 530px;
  position: relative;
  padding: 28px 48px 84px;
  background: #fff;
}
.sena-tabs__panel {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  display: none;
}
.sena-tabs__panel.is-active {
  display: block;
  animation: senaFade 0.35s ease;
}
.sena-tabs__panel h3 {
  margin: 0 0 20px;
  font-size: clamp(38px, 4.3vw, 66px);
  line-height: 1.2;
  color: #2f3237;
  font-weight: 700;
}
.sena-tabs__panel h3 span {
  font-weight: 700;
}
.sena-tabs__text {
  width: 100%;
  max-width: 840px;
  margin-bottom: 28px;
  font-size: 18px;
  line-height: 1.62;
  color: #3d3d3d;
}
.sena-tabs__text p {
  margin: 0 0 14px;
}
.sena-tabs__text p:last-child {
  margin-bottom: 0;
}
.sena-tabs .sena-button {
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: #fff;
  color: #2e3134;
  padding: 16px 30px;
  font-size: 16px;
  font-weight: 400;
}
.sena-tabs .sena-button:hover {
  background: var(--sena-dark);
  color: #fff;
  border-color: var(--sena-dark);
}

.sena-product-page {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sena-product-hero {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 24px 0 20px;
}
.sena-product-hero__container {
  width: 100%;
  max-width: 1240px;
}
.sena-product-hero__slider {
  width: 100%;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #ececec;
}
.sena-product-hero__slide {
  width: 100%;
  aspect-ratio: 2/1;
  display: block;
}
.sena-product-hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sena-product-hero__arrow {
  width: 66px;
  height: 66px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  font-size: 34px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  cursor: pointer;
  transition: all 0.3s ease;
}
.sena-product-hero__arrow:hover {
  background: rgba(255, 255, 255, 0.42);
}
.sena-product-hero__arrow--prev {
  left: 20px;
}
.sena-product-hero__arrow--next {
  right: 20px;
}

.sena-product {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 34px 0 74px;
}
.sena-product__container {
  width: 100%;
  max-width: 1240px;
}
.sena-product__grid {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 28px;
  align-items: start;
}
.sena-product__content {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.sena-product__content h1 {
  margin: 0;
  font-size: clamp(26px, 3.1vw, 42px);
  line-height: 1.15;
  color: #303235;
  font-weight: 700;
}
.sena-product__description {
  font-size: 17px;
  line-height: 1.72;
  color: #3a3a3a;
}
.sena-product__description p {
  margin: 0 0 18px;
}
.sena-product__description p:last-child {
  margin-bottom: 0;
}
.sena-product__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.sena-product__catalog-btn {
  min-width: 190px;
  white-space: nowrap;
}
.sena-product__catalog-btn i {
  font-size: 18px;
  margin-left: 4px;
}
.sena-product__offer-btn {
  min-width: 190px;
  cursor: pointer;
}

.sena-product-gallery {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: sticky;
  top: 160px;
  align-self: start;
}
.sena-product-gallery__top {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 18px;
  overflow: hidden;
  background: #f2f2f2;
  position: relative;
}
.sena-product-gallery__slide {
  width: 100%;
  aspect-ratio: 11/10;
  display: block;
  background: #ececec;
}
.sena-product-gallery__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.sena-product-gallery__slide:hover img {
  transform: scale(1.04);
}
.sena-product-gallery__arrow {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  font-size: 28px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  cursor: pointer;
  transition: all 0.3s ease;
}
.sena-product-gallery__arrow:hover {
  background: rgba(255, 255, 255, 0.4);
}
.sena-product-gallery__arrow--prev {
  left: 12px;
}
.sena-product-gallery__arrow--next {
  right: 12px;
}
.sena-product-gallery__thumbs {
  width: 100%;
  overflow: hidden;
  border-radius: 14px;
  position: relative;
  z-index: 2;
}
.sena-product-gallery__thumb {
  width: auto;
  height: 102px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
  opacity: 0.58;
  transition: all 0.3s ease;
  cursor: pointer;
}
.sena-product-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sena-product-gallery__thumb.swiper-slide-thumb-active {
  opacity: 1;
  border-color: #202020;
}
.sena-product-gallery__thumb-arrow {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: #2c2d30;
  font-size: 20px;
  line-height: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.24s ease;
}
.sena-product-gallery__thumb-arrow:hover {
  background: #181818;
  color: #fff;
  border-color: #181818;
}
.sena-product-gallery__thumb-arrow--prev {
  left: 6px;
}
.sena-product-gallery__thumb-arrow--next {
  right: 6px;
}
.sena-product-gallery__thumb-arrow.swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
}

.sena-product-specs {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sena-product-specs h2 {
  margin: 0;
  font-size: clamp(25px, 2.7vw, 34px);
  line-height: 1.1;
  color: #303235;
}
.sena-product-specs__grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.sena-product-specs__content {
  width: 100%;
  padding: 20px 22px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 16px;
  font-size: 16px;
  line-height: 1.72;
  color: #3a3a3a;
}
.sena-product-specs__content p,
.sena-product-specs__content ul,
.sena-product-specs__content ol {
  margin: 0 0 16px;
}
.sena-product-specs__content p:last-child,
.sena-product-specs__content ul:last-child,
.sena-product-specs__content ol:last-child {
  margin-bottom: 0;
}
.sena-product-specs__content ul {
  padding-left: 20px;
  list-style: disc;
}
.sena-product-specs__content ol {
  padding-left: 20px;
  list-style: decimal;
}
.sena-product-specs__content li {
  list-style: inherit;
}
.sena-product-specs__content img {
  max-width: 100% !important;
  height: auto !important;
}

.sena-product-spec {
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 16px;
  background: transparent;
  overflow: hidden;
}
.sena-product-spec h3 {
  margin: 0;
  padding: 12px 16px;
  font-size: 20px;
  line-height: 1.2;
  color: #2f3134;
  font-weight: 500;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.sena-product-spec__body {
  width: 100%;
  min-height: 104px;
  padding: 12px 16px;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}
.sena-product-spec__body--no-icon {
  grid-template-columns: minmax(0, 1fr);
}
.sena-product-spec__icon {
  width: 74px;
  height: 74px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}
.sena-product-spec__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.sena-product-spec__desc {
  font-size: 16px;
  line-height: 1.55;
  color: #3d3d3d;
}

.sena-product-specs__group {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sena-product-specs__subheading {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
  color: #2f3134;
  font-weight: 500;
}

.sena-product-appearance {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.sena-product-appearance__item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  background: #fff;
  min-height: 86px;
}
.sena-product-appearance__media {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  overflow: hidden;
  background: #f7f7f5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.sena-product-appearance__media--pattern {
  cursor: zoom-in;
}
.sena-product-appearance__media--pattern img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sena-product-appearance__media--color {
  background: #fff;
}
.sena-product-appearance__swatch {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  display: block;
  background: var(--surface-color, #d9d4ce);
}
.sena-product-appearance__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.sena-product-appearance__content strong {
  font-size: 15px;
  line-height: 1.2;
  color: #2f3134;
  font-weight: 500;
}
.sena-product-appearance__content span {
  font-size: 12px;
  line-height: 1.4;
  color: #75787d;
}

@media (max-width: 1100px) {
  .sena-product-appearance {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.sena-product-faq {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sena-product-faq h2 {
  margin: 0;
  font-size: clamp(25px, 2.7vw, 34px);
  line-height: 1.1;
  color: #303235;
}
.sena-product-faq__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sena-product-faq__item {
  border: 1px solid rgba(0, 0, 0, 0.13);
  border-radius: 16px;
  background: transparent;
  overflow: hidden;
}
.sena-product-faq__question {
  width: 100%;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
  padding: 20px 24px;
  cursor: pointer;
  color: #2e3033;
}
.sena-product-faq__question span {
  font-size: 19px;
  line-height: 1.35;
  font-weight: 700;
}
.sena-product-faq__question i {
  font-size: 30px;
  transition: transform 0.28s ease;
}
.sena-product-faq__answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 24px;
  transition: max-height 0.35s ease, opacity 0.35s ease, padding 0.35s ease;
  font-size: 18px;
  line-height: 1.72;
  color: #3f3f3f;
}
.sena-product-faq__answer p {
  margin: 0 0 16px;
}
.sena-product-faq__answer p:last-child {
  margin-bottom: 0;
}
.sena-product-faq__item.is-open {
  background: #fff;
}
.sena-product-faq__item.is-open .sena-product-faq__question i {
  transform: rotate(180deg);
}
.sena-product-faq__item.is-open .sena-product-faq__answer {
  max-height: 1200px;
  opacity: 1;
  padding: 0 24px 22px;
}

.sena-product-related {
  padding-top: 0;
}

.sena-project-page {
  width: 100%;
}

.sena-project-detail {
  width: 100%;
  padding: 56px 24px 84px;
}
.sena-project-detail__container {
  width: min(1240px, 100%);
  margin: 0 auto;
}
.sena-project-detail__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 42px;
  align-items: start;
}
.sena-project-detail__grid--content-only {
  grid-template-columns: minmax(0, 900px);
  justify-content: center;
}
.sena-project-detail__media {
  display: block;
  width: 100%;
  aspect-ratio: 16/11;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--sena-line);
  background: #f4f4f4;
}
.sena-project-detail__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.sena-project-detail__media:hover img {
  transform: scale(1.04);
}
.sena-project-detail__content {
  color: #555b61;
  font-size: 16px;
  line-height: 1.75;
}
.sena-project-detail__content h2,
.sena-project-detail__content h3,
.sena-project-detail__content h4,
.sena-project-detail__content h5,
.sena-project-detail__content h6 {
  margin: 0 0 14px;
  color: #303235;
  line-height: 1.25;
  font-weight: 700;
}
.sena-project-detail__content h2 {
  font-size: 30px;
}
.sena-project-detail__content h3 {
  font-size: 24px;
}
.sena-project-detail__content h4 {
  font-size: 20px;
}
.sena-project-detail__content p,
.sena-project-detail__content ul,
.sena-project-detail__content ol {
  margin: 0 0 16px;
}
.sena-project-detail__content ul,
.sena-project-detail__content ol {
  padding-left: 22px;
}
.sena-project-detail__content li {
  margin-bottom: 7px;
}
.sena-project-detail__content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 18px 0;
}
.sena-project-detail__content > :last-child {
  margin-bottom: 0;
}

.sena-project-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}
.sena-project-gallery__item {
  display: block;
  aspect-ratio: 4/3;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--sena-line);
  background: #f4f4f4;
}
.sena-project-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.sena-project-gallery__item:hover img {
  transform: scale(1.06);
}

.sena-project-related {
  padding-top: 0;
}

.sena-product-seo {
  padding: 0 24px 70px;
}
.sena-product-seo__container {
  width: min(1180px, 100%);
  margin: 0 auto;
}
.sena-product-seo__content {
  max-width: 860px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.72;
  color: #5f6367;
  text-align: left;
}
.sena-product-seo__content h1,
.sena-product-seo__content h2,
.sena-product-seo__content h3,
.sena-product-seo__content h4,
.sena-product-seo__content h5,
.sena-product-seo__content h6 {
  margin: 0 0 12px;
  color: #303235;
  line-height: 1.25;
  font-weight: 700;
}
.sena-product-seo__content h1 {
  font-size: 24px;
}
.sena-product-seo__content h2 {
  font-size: 21px;
}
.sena-product-seo__content h3 {
  font-size: 18px;
}
.sena-product-seo__content h4 {
  font-size: 16px;
}
.sena-product-seo__content h5,
.sena-product-seo__content h6 {
  font-size: 14px;
}
.sena-product-seo__content p,
.sena-product-seo__content ul,
.sena-product-seo__content ol {
  margin: 0 0 14px;
}
.sena-product-seo__content ul,
.sena-product-seo__content ol {
  padding-left: 22px;
}
.sena-product-seo__content li {
  margin-bottom: 6px;
}
.sena-product-seo__content a {
  color: #303235;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.sena-product-seo__content img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 18px auto;
  border-radius: 8px;
}
.sena-product-seo__content > :last-child {
  margin-bottom: 0;
}

.sena-offer {
  position: fixed;
  inset: 0;
  z-index: 340;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.28s ease;
}
.sena-offer.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.sena-offer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
}
.sena-offer__box {
  width: min(620px, 100vw - 28px);
  max-height: calc(100vh - 48px);
  border-radius: 18px;
  background: #fff;
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.24);
  padding: 24px;
  overflow: auto;
  transform: translateY(10px) scale(0.99);
  opacity: 0;
  transition: all 0.28s ease;
}
.sena-offer.is-open .sena-offer__box {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.sena-offer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
}
.sena-offer__head h4 {
  margin: 0;
  font-size: 28px;
  line-height: 1.1;
  color: #2f3236;
  font-weight: 600;
}
.sena-offer__head button {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 999px;
  background: #fff;
  color: #1f1f1f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 24px;
}
.sena-offer__head button:hover {
  background: #efefef;
}
.sena-offer__form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sena-offer__form .sena-button {
  margin-top: 2px;
  min-height: 54px;
}
.sena-offer__field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.sena-offer__field label {
  font-size: 15px;
  line-height: 1;
  font-weight: 500;
  color: #2f3033;
}
.sena-offer__field input,
.sena-offer__field textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 13px;
  background: #fff;
  padding: 0 14px;
  color: #242424;
  font-size: 16px;
  line-height: 1.35;
}
.sena-offer__field input {
  min-height: 52px;
}
.sena-offer__field textarea {
  min-height: 130px;
  resize: vertical;
  padding: 14px;
}
.sena-offer__field input:focus,
.sena-offer__field textarea:focus {
  outline: none;
  border-color: #202020;
}
.sena-offer__feedback {
  margin: 0;
  min-height: 21px;
  font-size: 14px;
  line-height: 1.4;
  color: #666;
}
.sena-offer__feedback.is-error {
  color: #b42318;
}
.sena-offer__feedback.is-success {
  color: #027a48;
}

.sena-references {
  padding: 0 0 90px;
}
.sena-references__marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.sena-references__marquee::before, .sena-references__marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.sena-references__marquee::before {
  left: 0;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}
.sena-references__marquee::after {
  right: 0;
  background: linear-gradient(270deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}
.sena-references__track {
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content;
  animation: senaMarquee 34s linear infinite;
}
.sena-references__track:hover {
  animation-play-state: paused;
}

.sena-reference-logo {
  width: 160px;
  height: 140px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sena-reference-logo img {
  max-height: 95px;
  object-fit: contain;
}

.cms-gallery--references {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}
.cms-gallery--references .cms-gallery__item img {
  border: none;
  background: transparent;
  border-radius: 0;
  aspect-ratio: auto;
}
.cms-gallery--references .sena-reference-logo {
  width: 100%;
  height: 132px;
  padding: 18px;
  border-radius: 14px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.cms-gallery--references .sena-reference-logo img {
  width: auto;
  height: 100%;
  max-width: 100%;
  max-height: 200px;
}
.cms-gallery--references .sena-reference-logo:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 0, 0, 0.2);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.sena-page-form-block {
  width: 100%;
  margin-top: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  background: linear-gradient(180deg, #fafafa 0%, #f3f3f3 100%);
  padding: 28px;
}
.sena-page-form-block__head {
  margin-bottom: 20px;
}
.sena-page-form-block__head h2 {
  margin: 0 0 10px;
  font-size: clamp(26px, 3.2vw, 34px);
  line-height: 1.18;
  color: #2e3135;
}
.sena-page-form-block__head p {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: #5b5d62;
  max-width: 720px;
}

.sena-page-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sena-page-form__grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.sena-page-form__field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.sena-page-form__field label {
  font-size: 14px;
  line-height: 1.35;
  font-weight: 500;
  color: #3b3e44;
}
.sena-page-form__field input,
.sena-page-form__field textarea,
.sena-page-form__field select {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 12px;
  background: #fff;
  padding: 0 14px;
  min-height: 50px;
  color: #27292d;
  font-size: 15px;
  line-height: 1.35;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.sena-page-form__field input:focus,
.sena-page-form__field textarea:focus,
.sena-page-form__field select:focus {
  outline: none;
  border-color: #181818;
  box-shadow: 0 0 0 3px rgba(24, 24, 24, 0.08);
}
.sena-page-form__field textarea {
  min-height: 118px;
  padding: 12px 14px;
  resize: vertical;
}
.sena-page-form__field input[type=file] {
  min-height: 52px;
  padding: 10px 12px;
  cursor: pointer;
}
.sena-page-form__field--full {
  grid-column: 1/-1;
}
.sena-page-form__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
}
.sena-page-form__actions .sena-button {
  min-width: 200px;
}
.sena-page-form__feedback {
  margin: 0;
  min-height: 20px;
  font-size: 14px;
  line-height: 1.4;
  color: #555;
}
.sena-page-form__feedback.is-success {
  color: #0a7b43;
}
.sena-page-form__feedback.is-error {
  color: #b42318;
}

.sena-footer {
  width: 100%;
  padding: 0;
  display: flex;
  justify-content: center;
}
.sena-footer__container {
  width: 100%;
  max-width: 100%;
  border-radius: 0;
  background: var(--sena-dark);
  color: #fff;
  overflow: hidden;
}
.sena-footer__top {
  width: 100%;
  padding: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.7fr;
  gap: 50px;
}
.sena-footer__col h5 {
  margin: 0 0 15px;
  font-size: 22px;
  line-height: 1;
  font-weight: 600;
  color: #fff;
}
.sena-footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sena-footer__col ul a {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.86);
}
.sena-footer__col ul a:hover {
  color: #fff;
}
.sena-footer__col--contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sena-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.sena-footer__contact-item > span {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 22px;
  color: #fff;
}
.sena-footer__contact-item small {
  display: block;
  margin-bottom: 1px;
  font-size: 12px;
  line-height: 1.3;
  opacity: 0.58;
  font-weight: 300;
}
.sena-footer__contact-item p {
  margin: 0;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 300;
  color: #fff;
}
.sena-footer__contact-item:hover p {
  opacity: 0.86;
}
.sena-footer__bottom {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding: 22px 50px 30px;
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}
.sena-footer__bottom p {
  margin: 0;
}
.sena-footer__bottom a {
  color: #fff;
  text-decoration: underline;
}
.sena-footer__bottom a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.sena-whatsapp-float {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 330;
  width: 62px;
  height: 62px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #fff;
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.34);
  animation: sena-whatsapp-pulse 1.8s ease-in-out infinite;
}
.sena-whatsapp-float::before, .sena-whatsapp-float::after {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: inherit;
  border: 1px solid rgba(37, 211, 102, 0.45);
  opacity: 0;
  animation: sena-whatsapp-ring 1.8s ease-out infinite;
}
.sena-whatsapp-float::after {
  animation-delay: 0.55s;
}
.sena-whatsapp-float i,
.sena-whatsapp-float span {
  position: relative;
  z-index: 1;
}
.sena-whatsapp-float i {
  font-size: 31px;
}
.sena-whatsapp-float span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.sena-whatsapp-float:hover {
  color: #fff;
  transform: translateY(-2px);
}

@keyframes sena-whatsapp-pulse {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-2px) scale(1.04);
  }
}
@keyframes sena-whatsapp-ring {
  0% {
    opacity: 0.75;
    transform: scale(0.92);
  }
  100% {
    opacity: 0;
    transform: scale(1.35);
  }
}
@keyframes senaFade {
  from {
    opacity: 0;
    transform: translate3d(0, 10px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes senaMarquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}
@media (max-width: 1300px) {
  .sena-header,
  .sena-intro,
  .sena-product-hero,
  .sena-product,
  .sena-categories,
  .sena-cta-band,
  .sena-featured,
  .sena-testimonials,
  .sena-promos,
  .sena-tabs,
  .sena-references {
    padding-left: 20px;
    padding-right: 20px;
  }
  .sena-header {
    padding-left: 15px;
    padding-right: 15px;
  }
  .sena-header__container {
    min-height: 92px;
  }
  .sena-header__menu {
    gap: 30px;
  }
  .sena-header__link {
    font-size: 16px;
  }
  .sena-section-head h2 {
    font-size: 52px;
  }
  .sena-hero__title {
    font-size: 54px;
  }
  .sena-hero__description {
    font-size: 24px;
  }
  .sena-intro {
    padding-top: 90px;
    padding-bottom: 100px;
  }
  .sena-intro__text {
    font-size: 27px;
  }
  .sena-category-card__footer h3,
  .sena-promo-card__footer h3 {
    font-size: 26px;
  }
  .sena-story-block__inner p,
  .sena-story-block__text {
    font-size: 28px;
  }
  .sena-testimonial__text {
    font-size: 18px;
  }
  .sena-product-gallery__thumb {
    height: 95px;
  }
  .sena-project-detail__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .sena-project-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 1100px) {
  .cms-gallery--references {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .sena-header {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .sena-header__container {
    min-height: 72px;
  }
  .sena-header__mobile-toggle {
    display: inline-flex;
  }
  .sena-header__nav {
    width: 100%;
    height: calc(100vh - 92px);
    padding: 20px;
    position: fixed;
    left: 0;
    top: 92px;
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: all 0.28s ease;
    overflow: auto;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .sena-header__nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  .sena-header__menu {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 2px;
  }
  .sena-header__item {
    width: 100%;
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }
  .sena-header__item:last-child {
    border-bottom: none;
  }
  .sena-header__item--dropdown::after {
    display: none;
  }
  .sena-header__item--mobile-only {
    display: block;
  }
  .sena-header__item--dropdown:hover > .sena-header__dropdown {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: none;
  }
  .sena-header__item.is-open > .sena-header__dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    max-height: 500px;
    margin-top: 0;
  }
  .sena-header__item.is-open > .sena-header__link i {
    transform: rotate(180deg);
  }
  .sena-header__link {
    width: 100%;
    padding: 14px 0;
    justify-content: space-between;
    font-size: 17px;
    text-align: left;
  }
  .sena-header__dropdown {
    width: 100%;
    position: static;
    transform: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    box-shadow: none;
    border-radius: 0;
    border: none;
    background: transparent;
    padding: 0 0 10px;
    max-height: 0;
    overflow: hidden;
    margin-left: 0;
  }
  .sena-header__dropdown--small {
    width: 100%;
  }
  .sena-header__dropdown-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }
  .sena-header__dropdown-item {
    justify-content: flex-start;
    padding: 8px 0;
    border-radius: 0;
    text-align: left;
  }
  .sena-header__dropdown-list {
    padding: 0;
    gap: 0;
  }
  .sena-header__dropdown-link {
    padding: 10px 0;
    border-radius: 0;
    font-size: 15px;
  }
  .sena-header__dropdown-empty {
    padding: 10px 0;
  }
  .sena-header__dropdown-thumb {
    width: 44px;
    height: 44px;
  }
  .sena-section-head {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
  }
  .sena-section-head h2 {
    font-size: 44px;
  }
  .sena-categories__grid,
  .sena-featured__grid,
  .sena-promos__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
  .sena-product-hero {
    padding-top: 18px;
    padding-bottom: 16px;
  }
  .sena-product-hero__slider {
    border-radius: 16px;
  }
  .sena-product-hero__arrow {
    width: 54px;
    height: 54px;
    font-size: 28px;
  }
  .sena-product-hero__arrow--prev {
    left: 14px;
  }
  .sena-product-hero__arrow--next {
    right: 14px;
  }
  .sena-product {
    padding-top: 24px;
  }
  .sena-product__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .sena-product__content {
    gap: 22px;
  }
  .sena-product__content h1 {
    font-size: clamp(26px, 4.6vw, 36px);
  }
  .sena-product__description {
    font-size: 16px;
  }
  .sena-product-gallery {
    position: static;
    top: auto;
  }
  .sena-product-gallery__slide {
    aspect-ratio: 16/11;
  }
  .sena-product-gallery__arrow {
    width: 58px;
    height: 58px;
    font-size: 28px;
  }
  .sena-product-gallery__thumb-arrow {
    width: 32px;
    height: 32px;
    font-size: 18px;
  }
  .sena-product-gallery__thumb {
    height: 88px;
  }
  .sena-product-spec h3 {
    font-size: 19px;
  }
  .sena-product-faq__question span {
    font-size: 17px;
  }
  .sena-product-faq__answer {
    font-size: 16px;
  }
  .sena-product-seo {
    padding: 0 18px 52px;
  }
  .sena-product-seo__content {
    max-width: 100%;
  }
  .sena-cta-band__content {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }
  .sena-cta-band__content p {
    font-size: 24px;
  }
  .sena-story-stack {
    min-height: 270vh;
  }
  .sena-story-stack__content {
    width: calc(100% - 32px);
    max-width: 1240px;
    padding: 0;
  }
  .sena-story-block {
    min-height: 90vh;
  }
  .sena-story-block__inner {
    max-width: 100%;
  }
  .sena-story-block__inner p,
  .sena-story-block__inner .sena-story-block__text {
    font-size: 24px;
  }
  .sena-tabs__media {
    height: 340px;
  }
  .sena-tabs__nav {
    width: auto;
    max-width: calc(100% - 90px);
    top: 20px;
    min-height: 68px;
    padding: 7px;
  }
  .sena-tabs__tab {
    padding: 14px 20px;
    font-size: 17px;
  }
  .sena-tabs__panels {
    min-height: 470px;
    padding: 24px 34px 62px;
  }
  .sena-tabs__panel h3 {
    font-size: clamp(34px, 5.2vw, 54px);
  }
  .sena-footer__top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    padding: 34px;
  }
  .sena-footer__bottom {
    padding: 20px 34px 24px;
  }
}
@media (max-width: 768px) {
  .cms-gallery--references {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .cms-gallery--references .sena-reference-logo {
    height: 112px;
    padding: 14px;
  }
  .sena-page-form-block {
    padding: 20px;
    border-radius: 16px;
  }
  .sena-page-form-block__head h2 {
    font-size: clamp(24px, 6.2vw, 30px);
  }
  .sena-page-form-block__head p {
    font-size: 15px;
  }
  .sena-page-form__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .sena-page-form__field input,
  .sena-page-form__field textarea,
  .sena-page-form__field select {
    min-height: 48px;
    font-size: 15px;
  }
  .sena-page-form__field textarea {
    min-height: 104px;
  }
  .sena-page-form__actions .sena-button {
    width: 100%;
    min-width: 0;
  }
  .sena-page-title {
    padding-top: 40px;
    padding-bottom: 34px;
  }
  .sena-page-title h1 {
    font-size: clamp(30px, 8.8vw, 40px);
  }
  .sena-page-title__description {
    font-size: 15px;
    line-height: 1.64;
  }
  .sena-page-title.has-bg {
    padding-top: 72px;
    padding-bottom: 64px;
  }
  .sena-category-title {
    padding-top: 40px;
    padding-bottom: 34px;
  }
  .sena-category-title h1 {
    font-size: clamp(30px, 8.8vw, 40px);
  }
  .sena-category-title__description {
    font-size: 15px;
    line-height: 1.64;
  }
  .sena-category-title.has-bg {
    padding-top: 72px;
    padding-bottom: 64px;
  }
  .sena-header {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .sena-header__container {
    min-height: 85px;
  }
  .sena-header__logo {
    width: auto;
    height: 85px;
  }
  .sena-header__logo img {
    width: auto;
    height: 100%;
  }
  .sena-header__search-toggle {
    width: 44px;
    height: 44px;
    font-size: 21px;
  }
  .sena-header__actions {
    gap: 10px;
  }
  .sena-header .sena-button--dark {
    padding: 13px 20px;
    font-size: 14px;
  }
  .sena-header__nav {
    top: 101px;
    height: calc(100vh - 101px);
  }
  .sena-hero__content {
    max-width: 100%;
    padding: 0 20px 45px;
  }
  .sena-hero__kicker {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .sena-hero__title {
    font-size: 40px;
  }
  .sena-hero__description {
    font-size: 19px;
    margin-bottom: 18px;
  }
  .sena-hero__arrow {
    display: none !important;
  }
  .sena-intro {
    padding-top: 60px;
    padding-bottom: 70px;
  }
  .sena-intro__text {
    font-size: 21px;
  }
  .sena-section-head h2 {
    font-size: 36px;
  }
  .sena-category-card__image,
  .sena-featured-card__image {
    height: 260px;
  }
  .sena-promo-card__image {
    height: 320px;
  }
  .sena-category-card__footer h3,
  .sena-promo-card__footer h3 {
    font-size: 22px;
  }
  .sena-category-card__footer span,
  .sena-featured-card__info > i {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
  .sena-product-hero {
    display: none;
  }
  .sena-product {
    padding-top: 22px;
    padding-bottom: 60px;
  }
  .sena-product__content {
    gap: 18px;
  }
  .sena-product__content h1 {
    font-size: clamp(24px, 6.5vw, 32px);
  }
  .sena-product__description {
    font-size: 16px;
    line-height: 1.65;
  }
  .sena-product__actions {
    width: 100%;
    gap: 10px;
  }
  .sena-product__actions .sena-button {
    width: 100%;
    justify-content: center;
  }
  .sena-product-gallery {
    display: flex;
    gap: 10px;
    max-width: calc(100vw - 24px);
  }
  .sena-product-gallery__top {
    border-radius: 14px;
  }
  .sena-product-gallery__slide {
    aspect-ratio: 4/3;
  }
  .sena-product-gallery__arrow {
    width: 44px;
    height: 44px;
    font-size: 22px;
  }
  .sena-product-gallery__arrow--prev {
    left: 10px;
  }
  .sena-product-gallery__arrow--next {
    right: 10px;
  }
  .sena-product-gallery__thumb-arrow {
    width: 28px;
    height: 28px;
    font-size: 16px;
    border-width: 1px;
  }
  .sena-product-gallery__thumb-arrow--prev {
    left: 4px;
  }
  .sena-product-gallery__thumb-arrow--next {
    right: 4px;
  }
  .sena-product-gallery__thumb {
    height: 72px;
    border-radius: 10px;
  }
  .sena-product-specs h2 {
    font-size: clamp(24px, 6.5vw, 30px);
  }
  .sena-product-specs__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .sena-product-specs__content {
    padding: 16px 18px;
    font-size: 15px;
  }
  .sena-product-spec h3 {
    font-size: 18px;
    padding: 10px 14px;
  }
  .sena-product-spec__body {
    min-height: 0;
    padding: 10px 14px;
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 12px;
  }
  .sena-product-spec__icon {
    width: 62px;
    height: 62px;
    border-radius: 10px;
    padding: 8px;
  }
  .sena-product-spec__desc {
    font-size: 15px;
  }
  .sena-product-specs__subheading {
    font-size: 17px;
  }
  .sena-product-appearance {
    grid-template-columns: 1fr;
  }
  .sena-product-appearance__item {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 10px;
    padding: 10px;
  }
  .sena-product-appearance__media {
    width: 56px;
    height: 56px;
    border-radius: 10px;
  }
  .sena-product-appearance__content strong {
    font-size: 14px;
  }
  .sena-product-appearance__content span {
    font-size: 11px;
  }
  .sena-product-faq h2 {
    font-size: clamp(24px, 6.5vw, 30px);
  }
  .sena-product-faq__question {
    padding: 16px 18px;
  }
  .sena-product-faq__question span {
    font-size: 18px;
  }
  .sena-product-faq__question i {
    font-size: 26px;
  }
  .sena-product-faq__answer {
    font-size: 16px;
    padding-left: 18px;
    padding-right: 18px;
  }
  .sena-product-faq__item.is-open .sena-product-faq__answer {
    padding: 0 18px 16px;
  }
  .sena-project-detail {
    padding: 34px 14px 58px;
  }
  .sena-project-detail__media {
    border-radius: 14px;
  }
  .sena-project-detail__content {
    font-size: 15px;
    line-height: 1.68;
  }
  .sena-project-detail__content h2 {
    font-size: 24px;
  }
  .sena-project-detail__content h3 {
    font-size: 20px;
  }
  .sena-project-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .sena-project-gallery__item {
    border-radius: 12px;
  }
  .sena-story-stack {
    min-height: 240vh;
  }
  .sena-story-stack__content {
    width: calc(100% - 28px);
  }
  .sena-story-block {
    min-height: 78vh;
  }
  .sena-story-block__inner {
    gap: 18px;
  }
  .sena-story-block__inner h3 {
    font-size: 18px;
  }
  .sena-story-block__inner p,
  .sena-story-block__inner .sena-story-block__text {
    font-size: 20px;
  }
  .sena-testimonials {
    padding-top: 90px;
  }
  .sena-testimonial {
    min-height: 280px;
    padding: 20px;
  }
  .sena-testimonial__text {
    font-size: 16px;
  }
  .sena-tabs {
    padding-top: 26px;
  }
  .sena-tabs__media {
    height: 320px;
  }
  .sena-tabs__nav {
    width: auto;
    max-width: calc(100% - 28px);
    left: 14px;
    right: 14px;
    top: 18px;
    transform: none;
    min-height: 64px;
    padding: 6px;
    justify-content: flex-start;
  }
  .sena-tabs__tab {
    padding: 13px 18px;
    font-size: 16px;
  }
  .sena-tabs__panels {
    padding: 22px 26px 46px;
    min-height: 420px;
  }
  .sena-tabs__panel {
    max-width: 100%;
  }
  .sena-tabs__panel h3 {
    font-size: clamp(30px, 6vw, 48px);
  }
  .sena-tabs__text {
    font-size: 16px;
  }
  .sena-references__marquee::before, .sena-references__marquee::after {
    width: 50px;
  }
  .sena-reference-logo {
    width: 130px;
    height: 105px;
    padding: 16px;
  }
  .sena-footer__top {
    grid-template-columns: 1fr;
    padding: 24px 20px;
    gap: 24px;
  }
  .sena-footer__col h5 {
    font-size: 20px;
  }
  .sena-footer__col ul a {
    font-size: 16px;
  }
  .sena-footer__contact-item p {
    font-size: 16px;
  }
  .sena-footer__bottom {
    padding: 16px 20px 20px;
    text-align: left;
    font-size: 14px;
  }
  .sena-search {
    padding: 16px;
  }
  .sena-search__box {
    top: auto;
    width: min(760px, 100vw - 22px);
    max-height: calc(100vh - 32px);
    padding: 16px;
    border-radius: 14px;
  }
  .sena-search__head {
    margin-bottom: 12px;
  }
  .sena-search__head h4 {
    font-size: 18px;
  }
  .sena-search__head button {
    width: 35px;
    height: 35px;
    font-size: 19px;
  }
  .sena-search__form {
    flex-direction: column;
    gap: 9px;
  }
  .sena-search__form input {
    width: 100%;
    height: 54px;
    min-height: 54px;
    font-size: 16px;
    line-height: 1.15;
    padding: 0 18px;
  }
  .sena-search__form .sena-button {
    width: 100%;
  }
  .sena-offer {
    padding: 14px;
  }
  .sena-offer__box {
    width: calc(100vw - 20px);
    max-height: calc(100vh - 28px);
    border-radius: 14px;
    padding: 16px;
  }
  .sena-offer__head h4 {
    font-size: 22px;
  }
  .sena-offer__head button {
    width: 36px;
    height: 36px;
    font-size: 19px;
  }
  .sena-offer__field label {
    font-size: 14px;
  }
  .sena-offer__field input {
    min-height: 48px;
    font-size: 15px;
  }
  .sena-offer__field textarea {
    min-height: 112px;
    font-size: 15px;
  }
  body.is-search-page .sena-page-title {
    padding-top: 34px;
    padding-bottom: 22px;
  }
  body.is-search-page .sena-page-title__container h1 {
    font-size: clamp(28px, 7.4vw, 38px);
  }
  body.is-search-page .sena-page-title__container .sena-page-title__description {
    font-size: 15px;
  }
  body.is-search-page .sena-category-title {
    padding-top: 34px;
    padding-bottom: 22px;
  }
  body.is-search-page .sena-category-title__container h1 {
    font-size: clamp(28px, 7.4vw, 38px);
  }
  body.is-search-page .sena-category-title__container .sena-category-title__description {
    font-size: 15px;
  }
  body.is-search-page .cms-category {
    padding-left: 12px;
    padding-right: 12px;
    margin-bottom: 60px;
  }
  .sena-search-page__form {
    flex-direction: column;
    align-items: stretch;
  }
  .sena-search-page__form input {
    width: 100%;
    height: 54px;
    font-size: 15px;
  }
  .sena-search-page__form .sena-button {
    width: 100%;
    min-height: 52px;
  }
  .sena-search-page__results {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .sena-search-page__empty {
    min-height: 150px;
    padding: 24px 20px;
  }
  .sena-search-page__empty strong {
    font-size: 20px;
  }
  .sena-search-page__empty span {
    font-size: 14px;
  }
  .sena-category-seo {
    padding-bottom: 36px;
  }
  .sena-category-seo__container {
    padding-top: 18px;
  }
  .sena-category-seo__content {
    font-size: 13px;
    line-height: 1.68;
  }
  .sena-category-seo__content h2 {
    font-size: 14px;
    margin-bottom: 8px;
  }
}
@media (max-width: 480px) {
  .cms-gallery--references {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .cms-gallery--references .sena-reference-logo {
    height: 100px;
    padding: 10px;
  }
  .cms-gallery--references .sena-reference-logo img {
    max-height: 200px;
  }
  .sena-page-form-block {
    padding: 16px;
    border-radius: 14px;
  }
  .sena-page-title {
    padding-top: 34px;
    padding-bottom: 30px;
  }
  .sena-page-title h1 {
    font-size: clamp(28px, 9vw, 34px);
  }
  .sena-page-title__description {
    font-size: 14px;
    line-height: 1.58;
  }
  .sena-page-title.has-bg {
    padding-top: 60px;
    padding-bottom: 54px;
  }
  .sena-category-title {
    padding-top: 34px;
    padding-bottom: 30px;
  }
  .sena-category-title h1 {
    font-size: clamp(28px, 9vw, 34px);
  }
  .sena-category-title__description {
    font-size: 14px;
    line-height: 1.58;
  }
  .sena-category-title.has-bg {
    padding-top: 60px;
    padding-bottom: 54px;
  }
  .sena-header {
    padding-left: 15px;
    padding-right: 15px;
  }
  .sena-header__actions .sena-button--dark {
    display: none;
  }
  .sena-section-head h2 {
    font-size: 32px;
  }
  .sena-categories__container,
  .sena-featured__container,
  .sena-promos__container {
    width: 100%;
  }
  .sena-categories__grid,
  .sena-featured__grid,
  .sena-promos__grid {
    grid-template-columns: 1fr;
  }
  .sena-product {
    padding-left: 12px;
    padding-right: 12px;
  }
  .sena-product__content h1 {
    font-size: clamp(26px, 8vw, 34px);
  }
  .sena-product-gallery__thumb {
    height: 66px;
  }
  .sena-product-gallery__thumb-arrow {
    width: 26px;
    height: 26px;
    font-size: 14px;
  }
  .sena-product-faq__question span {
    font-size: 17px;
  }
  .sena-product-seo {
    padding-left: 12px;
    padding-right: 12px;
  }
  .sena-product-seo__content h1 {
    font-size: 22px;
  }
  .sena-product-seo__content h2 {
    font-size: 19px;
  }
  .sena-product-seo__content h3 {
    font-size: 17px;
  }
  .sena-hero {
    padding-left: 0;
    padding-right: 0;
  }
  .sena-hero__slider {
    border-radius: 0;
  }
  .sena-hero__title {
    font-size: 34px;
  }
  .sena-hero__description {
    font-size: 16px;
  }
  .sena-hero__actions {
    width: 100%;
  }
  .sena-hero__actions .sena-button {
    width: 100%;
    justify-content: center;
  }
  .sena-intro {
    padding-left: 10px;
    padding-right: 10px;
  }
  .sena-intro__text {
    font-size: 18px;
  }
  .sena-cta-band {
    padding-left: 12px;
    padding-right: 12px;
  }
  .sena-cta-band__content p {
    font-size: 18px;
  }
  .sena-story-block__inner p,
  .sena-story-block__text {
    font-size: 17px;
  }
  .sena-story-stack__content {
    width: calc(100% - 20px);
  }
  .sena-testimonial__top {
    flex-wrap: wrap;
  }
  .sena-testimonial__google {
    font-size: 12px;
  }
}

/*# sourceMappingURL=main.css.map */
