:root {
  --neutral-600: #625d7e;
  --neutral-800: #181443;
  --primary-1: #5d4fff;
  --neutral-700: #1e1b42;
  --neutral-100: white;
  --secondary-1: #f2f1fe;
  --neutral-500: #9693b8;
  --neutral-400: #d9d8e5;
  --neutral-300: #efeef6;
  --neutral-200: #faf9fc;
}

body {
  padding: 0;
  margin: 0;
  background: #fff;
  font-family: "Rubik", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

.container {
  width: 100%;
  margin: 0 auto;
  max-width: 1200px;
}

.button-secondary {
  border: 1px solid var(--neutral-300);
  background-color: var(--neutral-100);
  color: var(--primary-1);
  text-align: center;
  transform-style: preserve-3d;
  border-radius: 12px;
  padding: 24px 32px;
  line-height: 1.111em;
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    border-color 0.3s,
    color 0.3s,
    background-color 0.3s;
  box-shadow:
    0 1px 3px #18144312,
    0 2px 6px #5d4fff1a;
}

.button-secondary:hover {
  transform: translate3d(0, -4px, 0.01px);
  box-shadow:
    0 1px 3px #18144312,
    0 5px 17px #5d4fff45;
}

.button-primary {
  background-color: var(--primary-1);
  color: var(--neutral-100);
  text-align: center;
  transform-style: preserve-3d;
  border-radius: 12px;
  padding: 24px 32px;
  font-weight: 700;
  line-height: 1.111em;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  box-shadow: 0 0 #4a3aff1f;
  text-decoration: none;
}

.button-primary:hover {
  color: var(--neutral-100);
  transform: translate3d(0, -4px, 0.01px);
  box-shadow: 0 4px 15px #4a3aff99;
}

.header {
  width: 100%;
  padding: 10px 0;
  box-shadow: 0 2px 14px #0f0c310f;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#menu {
  display: none;
}

.burger-btn {
  flex-shrink: 0;
  width: 30px;
  height: 20px;
  position: relative;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1000;
  outline: none;
  display: none;
}

/* Полоски бургера */
.burger-btn__line {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}

/* Позиционирование полосок */
.burger-btn__line:nth-child(1) {
  top: 0;
}

.burger-btn__line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.burger-btn__line:nth-child(3) {
  bottom: 0;
}

.header-logo__img {
  height: 70px;
  vertical-align: middle;
}

.header-nav__menu {
  display: flex;
  align-items: center;
  column-gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-nav__item.has-children {
  position: relative;
}

.header-nav__item a {
  color: var(--neutral-800);
  border-radius: 8px;
  padding: 10px 13px;
  font-size: 16px;
  line-height: 1.125em;
  text-decoration: none;
  transition:
    background-color 0.35s,
    color 0.35s;
  display: inline-block;
}

.header-nav__item.has-children a {
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.header-nav__item:hover > a {
  background-color: var(--secondary-1);
  color: var(--primary-1);
}

.header-nav__item.active > a {
  background-color: var(--secondary-1);
  color: var(--primary-1);
  font-weight: 600;
}

.header-nav__item:hover > a > .header-nav__arrow {
  transform: rotate(-180deg);
}

.header-nav__item:hover > a > .header-nav__arrow::before,
.header-nav__item:hover > a > .header-nav__arrow::after {
  background-color: var(--primary-1);
}

.header-nav__arrow {
  position: relative;
  display: inline-block;
  width: 11.9px;
  height: 6.9px;
  transition: all 0.2s ease-out;
}

.header-nav__arrow::before,
.header-nav__arrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 1px);
  width: 2px;
  height: 9px;
  border-radius: 9999px;
  background-color: var(--neutral-800);
  transform-origin: 50% calc(100% - 1px);
}

.header-nav__arrow::before {
  transform: rotate(45deg);
}

.header-nav__arrow::after {
  transform: rotate(-45deg);
}

.header-nav__submenu {
  position: absolute;
  z-index: 1;
  background-color: var(--neutral-100);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 5px 10px #1505591a;
  width: 300px;
  margin-top: 50px;
  top: 0px;
  right: -100px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-out;
  list-style: none;
}

.header-nav__item.has-children:hover .header-nav__submenu {
  opacity: 1;
  visibility: visible;
}

.header-nav__sublink:hover {
  background-color: var(--secondary-1);
  color: var(--primary-1);
}

.header-languages {
  margin-right: 14px;
}

.header-languages__current {
  display: flex;
  align-items: center;
  column-gap: 10px;
  padding: 9px 10px;
  background-color: var(--neutral-300);
  border: 1px solid var(--neutral-400);
  border-radius: 12px;
}

.header-languages__icon {
  width: 34px;
  border-radius: 4px;
  vertical-align: middle;
}

.header-actions {
  display: flex;
  align-items: center;
}

.header-phone {
  display: flex;
  align-items: center;
  column-gap: 10px;
  color: var(--neutral-800);
  margin-right: 14px;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.143em;
  text-decoration: none;
}

.header-phone i {
  font-size: 24px;
}

.header-request {
  display: flex;
  align-items: center;
  column-gap: 10px;
  padding: 11px 20px;
  font-size: 14px;
  line-height: 1.143em;
  text-decoration: none;
}

.header-request i {
  font-size: 24px;
}

.footer {
  border-top: 1px solid var(--neutral-300);
  background-color: var(--neutral-100);
  padding-top: 60px;
}

.footer .container {
  display: flex;
  flex-direction: column;
}

.footer__top {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.footer__bottom {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  border-top: 1px solid var(--neutral-300);
  padding: 20px 0 20px 0;
}

.footer-group {
}

.footer-logo__img {
  height: 90px;
}

.footer-group__title {
  color: var(--neutral-800);
  letter-spacing: 0.03em;
  margin-top: 0;
  font-weight: 700;
  margin-bottom: 19px;
  margin-left: 9px;
  font-size: 16px;
  line-height: 1.5em;
  display: block;
}

.footer-nav__list {
  margin: 0;
  padding: 0;
}

.footer-nav__item {
  list-style: none;
}

.footer-nav__item a {
  color: var(--neutral-600);
  white-space: nowrap;
  border-radius: 8px;
  padding: 9px;
  font-size: 16px;
  line-height: 1.125em;
  text-decoration: none;
  transition:
    background-color 0.35s,
    color 0.35s;
  display: inline-block;
}

.footer-nav__item a:hover {
  background-color: var(--secondary-1);
  color: var(--primary-1);
}

.footer-contacts {
  margin: 0;
  padding: 0;
}

.footer-contacts__item {
  list-style: none;
}

.footer-contacts__link {
  color: var(--neutral-600);
  white-space: nowrap;
  border-radius: 8px;
  padding: 9px;
  font-size: 16px;
  line-height: 1.125em;
  text-decoration: none;
  transition:
    background-color 0.35s,
    color 0.35s;
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.footer-contacts__link i {
  color: var(--primary-1);
  font-size: 24px;
}

.footer-contacts__link:hover {
  background-color: var(--secondary-1);
  color: var(--primary-1);
}

.footer-socials {
  display: flex;
  column-gap: 20px;
  padding: 0;
  margin: 0;
}

.footer-socials__item {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
  list-style: none;
  border: 1px solid var(--neutral-300);
  border-radius: 20px;
  padding: 20px 60px 20px 20px;
  text-transform: uppercase;
  font-size: 12px;
  flex-shrink: 0;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.footer-socials__link {
  margin-top: 60px;
  border: 1px solid var(--neutral-300);
  border-radius: 12px;
  padding: 10px;
  height: 24px;
  transition: all 0.1s ease-out;
}

.footer-socials__link:hover {
  border: 1px solid var(--neutral-500);
}

.footer-socials__item:has(.footer-socials__link:hover) {
  transform: translate3d(0, -4px, 0.01px);
  box-shadow:
    0 1px 3px #18144312,
    0 5px 17px #5d4fff45;
}

.footer-socials__img {
  object-fit: none;
  width: 24px;
  height: 24px;
}

.footer__bottom-copyright {
  color: var(--neutral-600);
  font-size: 15px;
  line-height: 1.143em;
}

.stn-contacts .container {
  position: relative;
  z-index: 1;
  border-radius: 28px;
  justify-content: space-between;
  margin-top: -110px;
  padding: 43px 63px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-around;
  box-shadow: 0 4px 44px #5d4fff12;
  background-color: var(--neutral-100);
}

.stn-contacts__block {
  display: flex;
  column-gap: 16px;
}

.stn-contacts__block__icon {
  width: 62px;
  height: 62px;
  border-radius: 20px;
  background: var(--primary-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #fff;
}

.stn-contacts__block-title {
  margin-bottom: 9px;
  font-size: 24px;
  line-height: 1.25em;
  color: var(--neutral-800);
  letter-spacing: 0.03em;
  font-weight: 600;
}

.stn-contacts__block-link {
  color: var(--neutral-600);
  margin-bottom: 6px;
  font-size: 16px;
  line-height: 1.625em;
  text-decoration: none;
  display: block;
}

.stn-contacts__block-link:hover {
  color: var(--primary-1);
}

.stn-contacts__block-consultation {
  display: block;
  color: var(--primary-1);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5em;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  padding-bottom: 5px;
}

.stn-contacts__block-consultation:after {
  content: "";
  width: 100%;
  height: 2px;
  background: var(--primary-1);
  transform: translateX(-100%);
  position: absolute;
  bottom: 0px;
  left: 0;
  transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.stn-contacts__block-paragraph {
  font-size: 16px;
  line-height: 1.625em;
  color: var(--neutral-600);
  margin: 0;
  margin-bottom: 6px;
}

.stn-contacts__block-paragraph .accent-text {
  color: var(--primary-1);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.625em;
}

.stn-contacts__block-consultation:hover:after {
  transform: translateX(0);
}

.stn-contacts__divider {
  background-color: var(--neutral-400);
  width: 1px;
  height: auto;
  margin-left: 20px;
  margin-right: 20px;
}

.hero-slider .slide {
  display: flex;
  grid-template-columns: 1fr 1fr;
  height: 800px;
  /* задайте нужную высоту */
  position: relative;
  overflow: hidden;
}

.hero-slider .slide .container {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
}

/* Левая колонка – текст, выровненный по нижнему краю */
.slide-content {
  width: 44%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 20px 20px 0;
  position: relative;
  height: 100%;
}

/* Правый столбец – изображение */
.slide-image {
  width: 47%;
  margin-left: auto;
}

.slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Стилизация заголовка и описания */
.slide-content h2 {
  color: var(--neutral-800);
  letter-spacing: 0.01em;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 50px;
  font-weight: 600;
  line-height: 1.034em;
}

.slide-content .description {
  color: var(--neutral-600);
  font-size: 18px;
  line-height: 1.667em;
  margin-bottom: 20px;
}

/* Кнопка */
.slide-content .btn {
  align-self: flex-start;
  padding: 20px 25px;
  font-size: 16px;
  line-height: 1.143em;
  text-decoration: none;
  font-weight: 600;
}

.stn__list section:nth-child(even) {
  background: var(--neutral-200);
}

.stn-services {
  padding: 200px 0;
}

.stn-services__label {
  border: 1px solid var(--neutral-300);
  background-color: var(--neutral-100);
  color: var(--primary-1);
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 12px 14px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.125em;
  display: inline-block;
  box-shadow:
    0 1px 4px #0f0c3105,
    0 5px 15px #5d4fff1f;
}

.stn-services__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.stn-services__title {
  width: 50%;
  color: var(--neutral-800);
  letter-spacing: 0.03em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.237em;
}

.stn-services__button {
  text-decoration: none;
}

.stn-services .splide__list {
  padding-top: 50px !important;
}

.stn-services .splide__arrows {
  position: absolute;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  height: 1px;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stn-services .splide__arrow {
  background-color: var(--neutral-100);
  color: var(--primary-1);
  border-radius: 1000px;
  justify-content: center;
  align-items: center;
  width: 80px;
  min-width: 80px;
  height: 80px;
  font-size: 32px;
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    color 0.3s,
    background-color 0.3s;
  display: flex;
  left: -16px;
  box-shadow:
    0 1px 3px #18144312,
    0 1px 6px #5d4fff1a;
  border: none;
  cursor: pointer;
}

.stn-services .splide__arrow:hover {
  background-color: var(--primary-1);
  color: var(--neutral-100);
  transform: translate(0, -4px);
  box-shadow:
    0 1px 3px #18144312,
    0 8px 14px #4a3aff99;
}

.stn-services .splide__arrow svg {
  width: 48px;
  height: 48px;
}

.stn-services__card {
  border: 1px solid var(--neutral-300);
  background-color: var(--neutral-100);
  border-radius: 32px;
  overflow: hidden;
  box-shadow:
    0 2px 8px #5d4fff08,
    0 1px 13px #0f0c3105;
  color: var(--neutral-600);
  text-decoration: none;
  transition:
    box-shadow 0.35s,
    transform 0.35s,
    border-color 0.35s;
  transform: translate(0);
}

.stn-services__card:hover {
  border-color: var(--primary-1);
  color: var(--neutral-600);
  transform: translate(0, -8px);
  box-shadow:
    0 10px 15px #5d4fff08,
    0 10px 13px #0f0c3105;
}

.stn-services__card-image {
  width: 100%;
  max-width: 100%;
  display: inline-block;
  object-fit: cover;
  transition: all 0.3s ease-out;
}

.stn-services__card:hover .stn-services__card-image {
  transform: scale(1.1);
}

.stn-services__card-content {
  padding: 32px 32px 45px;
}

.stn-services__card-title {
  color: var(--neutral-800);
  margin-top: 0;
  margin-bottom: 6px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25em;
  transition: all 0.3s ease-in;
}

.stn-services__card:hover .stn-services__card-title {
  color: var(--primary-1);
}

.stn-services__card-desc {
  color: var(--neutral-600);
  font-size: 18px;
  line-height: 1.667em;
}

.stn-about {
  padding: 200px 0;
}

.stn-about .container {
  display: flex;
  align-items: center;
  column-gap: 90px;
}

.stn-about__images {
  display: flex;
  flex-direction: column;
  width: 50%;
  flex-shrink: 0;
}

.stn-about__image {
  max-width: 77%;
  height: 570px;
  object-fit: cover;
  align-content: start;
  border-radius: 40px;
  box-shadow:
    0 1px 7px #0000000a,
    0 15px 64px #1814432b;
}

.stn-about__image:nth-of-type(2) {
  align-self: end;
  margin-top: -25%;
  /* width: 300px; */
  width: 77%;
  height: 360px;
}

.stn-about__content {
  display: flex;
  flex-direction: column;
  align-items: start;
}

.stn-about__label {
  border: 1px solid var(--neutral-300);
  background-color: var(--neutral-100);
  color: var(--primary-1);
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 12px 14px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.125em;
  display: inline-block;
  box-shadow:
    0 1px 4px #0f0c3105,
    0 5px 15px #5d4fff1f;
}

.stn-about__title {
  color: var(--neutral-800);
  letter-spacing: 0.03em;
  margin-top: 0;
  margin-bottom: 21px;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.237em;
}

.stn-about__desc {
  color: var(--neutral-600);
  font-size: 18px;
  line-height: 1.667em;
  margin-bottom: 25px;
}

.stn-about__more {
  text-decoration: none;
}

.stn-team {
  padding: 200px 0;
}

.stn-team .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stn-team__label {
  border: 1px solid var(--neutral-300);
  background-color: var(--neutral-100);
  color: var(--primary-1);
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 12px 14px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.125em;
  display: inline-block;
  box-shadow:
    0 1px 4px #0f0c3105,
    0 5px 15px #5d4fff1f;
}

.stn-team__title {
  color: var(--neutral-800);
  letter-spacing: 0.03em;
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 38px;
  font-weight: 600;
  line-height: 1.237em;
  text-align: center;
}

.stn-team__desc {
  width: 50%;
  color: var(--neutral-600);
  font-size: 18px;
  line-height: 1.667em;
  text-align: center;
}

.stn-team .splide__list {
  padding-top: 50px !important;
}

.stn-team .splide__arrows {
  position: absolute;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  height: 1px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stn-team .splide__arrow {
  background-color: var(--neutral-100);
  color: var(--primary-1);
  border-radius: 1000px;
  justify-content: center;
  align-items: center;
  width: 80px;
  min-width: 80px;
  height: 80px;
  font-size: 32px;
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    color 0.3s,
    background-color 0.3s;
  display: flex;
  left: -16px;
  box-shadow:
    0 1px 3px #18144312,
    0 1px 6px #5d4fff1a;
  border: none;
  cursor: pointer;
}

.stn-team .splide__arrow:hover {
  background-color: var(--primary-1);
  color: var(--neutral-100);
  transform: translate(0, -4px);
  box-shadow:
    0 1px 3px #18144312,
    0 8px 14px #4a3aff99;
}

.stn-team .splide__arrow svg {
  width: 48px;
  height: 48px;
}

.stn-team__card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: transform 0.35s;
}

.stn-team__card:hover {
  transform: translate(0, -8px);
}

.stn-team__card-photo {
  border-radius: 32px;
  margin-bottom: 37px;
  max-width: 100%;
  display: inline-block;
  vertical-align: middle;
  object-fit: cover;
  transition: box-shadow 0.35s;
}

.stn-team__card:hover .stn-team__card-photo {
  box-shadow:
    0 10px 15px #5d4fff08,
    0 10px 13px #0f0c3105;
}

.stn-team__card-name {
  color: var(--neutral-800);
  margin-top: 0;
  margin-bottom: 11px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25em;
}

.stn-team__card-desc {
  color: var(--neutral-600);
  font-size: 18px;
  line-height: 1.667em;
}

.stn-team__bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 50px;
}

.stn-team__button {
  text-decoration: none;
}

.stn-portfolio {
  padding: 200px 0;
}

.stn-portfolio__label {
  border: 1px solid var(--neutral-300);
  background-color: var(--neutral-100);
  color: var(--primary-1);
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 12px 14px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.125em;
  display: inline-block;
  box-shadow:
    0 1px 4px #0f0c3105,
    0 5px 15px #5d4fff1f;
}

.stn-portfolio__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.stn-portfolio__title {
  width: 50%;
  color: var(--neutral-800);
  letter-spacing: 0.03em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.237em;
}

.stn-portfolio__button {
  text-decoration: none;
}

.stn-portfolio__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 100px;
}

.stn-portfolio__card {
  width: 100%;
  position: relative;
  border: 1px solid var(--neutral-300);
  background-color: var(--neutral-100);
  border-radius: 32px;
  overflow: hidden;
  box-shadow:
    0 2px 8px #5d4fff08,
    0 1px 13px #0f0c3105;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

.stn-portfolio__card:hover {
  border-color: var(--primary-1);
  color: var(--neutral-600);
  transform: translate(0, -8px);
  box-shadow:
    0 14px 19px #5d4fff0a,
    0 16px 18px #0f0c3108;
}

.stn-portfolio__card-image {
  width: 100%;
  height: 260px;
  object-fit: cover;
  filter: blur(10px);
  transition: all 0.3s ease-out;
  vertical-align: middle;
}

.stn-portfolio__card:hover .stn-portfolio__card-image {
  scale: 1.02;
  filter: none;
}

.stn-portfolio__card-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  color: var(--primary-1);
  transition: all 0.2s ease-in-out;
}

.stn-portfolio__card:hover .stn-portfolio__card-overlay {
  opacity: 0;
  visibility: hidden;
}

.stn-map {
  padding: 200px 0;
}

.stn-map .container {
  display: flex;
  align-items: center;
}

.stn-map__content {
  width: 50%;
  flex-shrink: 0;
  padding-right: 100px;
}

.stn-map__label {
  border: 1px solid var(--neutral-300);
  background-color: var(--neutral-100);
  color: var(--primary-1);
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 12px 14px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.125em;
  display: inline-block;
  box-shadow:
    0 1px 4px #0f0c3105,
    0 5px 15px #5d4fff1f;
}

.stn-map__title {
  color: var(--neutral-800);
  letter-spacing: 0.03em;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.237em;
}

.stn-map__desc {
  color: var(--neutral-600);
  font-size: 18px;
  line-height: 1.667em;
  margin-bottom: 20px;
}

.stn-map__button {
  display: inline-block;
  text-decoration: none;
}

.stn-map__map {
  width: 50%;
  height: 600px !important;
  margin-top: -300px;
  border: 1px solid var(--neutral-300);
  background-color: var(--neutral-100);
  border-radius: 32px;
  overflow: hidden;
  box-shadow:
    0 2px 8px #5d4fff08,
    0 1px 13px #0f0c3105;
  transition: all 0.3s ease-out;
}

.stn-map__map:hover {
  border-color: var(--primary-1);
  color: var(--neutral-600);
  transform: translate(0, -8px);
  box-shadow:
    0 1px 3px #18144312,
    0 5px 17px #5d4fff45;
}

.leaflet-bottom.leaflet-right {
  display: none;
}

.categories {
  margin-bottom: 60px;
}

.categories__title {
  border: 1px solid var(--neutral-300);
  background-color: var(--neutral-100);
  color: var(--primary-1);
  border-radius: 8px;
  margin-bottom: 30px;
  padding: 12px 14px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.125em;
  display: inline-block;
  box-shadow:
    0 1px 4px #0f0c3105,
    0 5px 15px #5d4fff1f;
}

.categories__list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.categories__card {
  width: 100%;
  text-decoration: none;
}

.category__card-image {
  width: 100%;
  height: 124px;
  vertical-align: middle;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 10px;
  transition: all 0.1s ease-out;
  border: 1px solid var(--neutral-300);
}

.categories__card:hover .category__card-image {
  transform: scale(1.05);
  border: 1px solid var(--primary-1);
}

.category__card-nophoto {
  width: 100%;
  height: 124px;
  display: flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 10px;
  transition: all 0.1s ease-out;
  border: 1px solid var(--neutral-300);
  background-color: var(--neutral-200);
}

.category__card-nophoto img {
  width: 40px;
  height: 40px;
  vertical-align: middle;
  opacity: 0.7;
}

.category__card-title {
  color: var(--neutral-600);
  margin-bottom: 6px;
  font-size: 16px;
  line-height: 1.625em;
  display: block;
}

.categories__card:hover .category__card-title {
  color: var(--primary-1);
}

.products__title {
  border: 1px solid var(--neutral-300);
  background-color: var(--neutral-100);
  color: var(--primary-1);
  border-radius: 8px;
  margin-bottom: 30px;
  padding: 12px 14px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.125em;
  display: inline-block;
  box-shadow:
    0 1px 4px #0f0c3105,
    0 5px 15px #5d4fff1f;
}

.products__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.product-card {
  width: 100%;
  border: 1px solid var(--neutral-300);
  background-color: var(--neutral-100);
  border-radius: 32px;
  overflow: hidden;
  box-shadow:
    0 2px 8px #5d4fff08,
    0 1px 13px #0f0c3105;
  color: var(--neutral-600);
  text-decoration: none;
  transition:
    box-shadow 0.35s,
    transform 0.35s,
    border-color 0.35s;
  transform: translate(0);
}

.product-card:hover {
  border-color: var(--primary-1);
  color: var(--neutral-600);
  transform: translate(0, -8px);
  box-shadow:
    0 10px 15px #5d4fff08,
    0 10px 13px #0f0c3105;
}

.product-card__image {
  width: 100%;
  height: 300px;
  object-fit: contain;
  vertical-align: middle;
}

.product-card__nophoto {
  width: 100%;
  height: 300px;
  background: var(--neutral-200);
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-card__nophoto__image {
  width: 100px;
  height: 100px;
  opacity: 0.7;
}

.product-card__content {
  display: block;
  padding: 20px 20px;
}

.product-card__title {
  color: var(--neutral-800);
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25em;
  transition: all 0.3sease-in;
}

.product-card:hover .product-card__title {
  color: var(--primary-1);
}

.product-card__desc {
  display: block;
  color: var(--neutral-600);
  font-size: 16px;
  line-height: 1.667em;
  margin-bottom: 20px;
}

.product-card__price {
  display: block;
  color: var(--primary-1);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25em;
}

.page {
  padding: 60px 0;
}

.page__header {
  margin-bottom: 80px;
}

.page__header .page__title {
  margin-bottom: 0px;
}

.page__title {
  color: var(--neutral-800);
  letter-spacing: 0.03em;
  margin-top: 0;
  margin-bottom: 40px;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.237em;
}

.page__subtitle {
  color: var(--neutral-600);
  font-size: 18px;
  line-height: 1.667em;
  margin-top: 10px;
}

.page__cover {
  width: 100%;
  height: 300px;
  object-fit: cover;
  vertical-align: middle;
  border-radius: 40px;
  box-shadow:
    0 1px 7px #0000000a,
    0 15px 64px #1814432b;
  margin-top: 40px;
}

.page__content {
  width: 100%;
  box-sizing: border-box;
  border-radius: 40px;
  border: 1px solid var(--neutral-300);
  box-shadow:
    0 2px 8px #5d4fff08,
    0 1px 13px #0f0c3105;
  background-color: var(--neutral-100);
  padding: 43px 63px;
  color: var(--neutral-700);
}

.page__content img {
  max-width: 100%;
  object-fit: cover;
  vertical-align: middle;
  border-radius: 40px;
  border: 1px solid var(--neutral-300);
}

.page__content ul,
.page__content ol {
  padding-left: 20px;
}

/* Основные стили страницы продуктов */
.product-page {
  max-width: 1200px;
  margin: 40px auto;
  padding: 100px 20px;
}

.product-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* Секция с изображениями */
.product-gallery-section {
  position: relative;
}

.product-main-image {
  width: 100%;
  height: 500px;
  object-fit: contain;
  border-radius: 8px;
  background: #f5f5f5;
  border: 1px solid var(--neutral-300);
}

.product-main__nophoto {
  width: 100%;
  height: 500px;
  background: var(--neutral-200);
  border: 1px solid var(--neutral-300);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
}

.product-main__nophoto__image {
  width: 100px;
  height: 100px;
  opacity: 0.7;
}

/* Слайдер миниатюр */
.thumbnails-slider {
  margin-top: 20px;
}

.thumbnails-slider .splide__slide {
  border-radius: 10px;
  transition: all 0.1s ease-out;
  opacity: 0.8;
  border: 1px solid var(--neutral-300);
  cursor: pointer;
}

.thumbnails-slider .splide__slide.is-active {
  opacity: 1;
  border: 1px solid var(--primary-1);
  cursor: default;
}

.thumbnails-slider .splide__slide:hover {
}

/* Секция с информацией */
.product-info-section {
  padding: 20px;
}

.product-title {
  color: var(--neutral-800);
  letter-spacing: 0.03em;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.237em;
}

.product-price {
  font-size: 28px;
  color: var(--neutral-800);
  font-weight: 700;
  margin-bottom: 30px;
}

/* Блок описания */
.product-description {
  border-top: 1px solid #eee;
  padding-top: 20px;
}

.description-title {
  font-size: 20px;
  margin: 0 0 15px;
  color: var(--neutral-800);
}

.description-content {
  line-height: 1.6;
  color: var(--neutral-600);
  font-size: 18px;
  line-height: 1.667em;
}

.description-content ul,
.description-content ol {
  margin: 0 0 20px;
  padding: 0 0 0 20px;
}

.description-content img {
  max-width: 100%;
}

.stn-error .container {
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 100px 0;
}

.stn-error h1 {
  color: var(--neutral-800);
}

.stn-error p {
  color: var(--neutral-600);
}

/* Стили для пагинации */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin-top: 60px;
}

.pagination li {
  display: inline-block;
}

.pagination a,
.pagination span {
  display: inline-block;
  padding: 8px 16px;
  background-color: var(--neutral-200);
  border-radius: 12px;
  color: var(--neutral-800);
  text-decoration: none;
  font-size: 16px;
  transition:
    background-color 0.3s,
    color 0.3s;
}

.pagination a:hover,
.pagination .active a {
  background-color: var(--primary-1);
  color: var(--neutral-100);
}

.pagination .disabled a {
  background-color: var(--neutral-300);
  color: var(--neutral-500);
  pointer-events: none;
}

/* Кнопки пагинации: первая и последняя */
.pagination .first,
.pagination .last {
  font-weight: bold;
}

/* Стиль для активной страницы */
.pagination .active a {
  background-color: var(--primary-1);
  color: var(--neutral-100);
  font-weight: 600;
}

.pagination .dots {
  padding: 8px 16px;
  color: var(--neutral-500);
}

/* Стили для страницы сотрудника */

.employee-page {
  max-width: 1200px;
  margin: 40px auto;
  padding: 100px 20px;
}

.employee-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* Секция с изображениями */
.employee-gallery-section {
  position: relative;
}

.employee-main-image {
  width: 100%;
  height: 500px;
  object-fit: contain;
  border-radius: 8px;
}

/* /* Слайдер миниатюр */
*/
/* .thumbnails-slider { */
/*   margin-top: 20px; */
/* } */
/**/
/* .thumbnails-slider .splide__slide { */
/*   border-radius: 10px; */
/*   transition: all 0.1s ease-out; */
/*   opacity: 0.8; */
/*   border: 1px solid var(--neutral-300); */
/*   cursor: pointer; */
/* } */
/**/
/* .thumbnails-slider .splide__slide.is-active { */
/*   opacity: 1; */
/*   border: 1px solid var(--primary-1); */
/*   cursor: default; */
/* } */
/**/
/* .thumbnails-slider .splide__slide:hover { */
/* } */

/* Секция с информацией */
.employee-info-section {
  padding: 20px;
}

.employee-title {
  color: var(--neutral-800);
  letter-spacing: 0.03em;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.237em;
}

.employee-price {
  font-size: 28px;
  color: var(--neutral-800);
  font-weight: 700;
  margin-bottom: 30px;
}

.employee-description {
  border-top: 1px solid #eee;
  padding-top: 20px;
}

.employee-certificates {
  padding-top: 100px;
}

.certificates-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
  gap: 20px;
}

.certificate-card {
  width: 100%;
  height: 300px;
}

.certificate-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
  cursor: pointer;
  transition:
    transform 0.35s,
    box-shadow 0.35s;
}

.certificate-card:hover img {
  transform: translate(0, -8px);
  box-shadow:
    0 10px 15px #5d4fff08,
    0 10px 13px #0f0c3105;
}

.modal {
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
  display: block;
  justify-content: center;
  align-items: center;
  padding: 40px;
  box-sizing: border-box;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.modal-content {
  background: #fff;
  padding: 60px;
  position: relative;
  border-radius: 8px;
  z-index: 1;
  cursor: default;
}

.modal-close {
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
}

.modal-image {
  width: 100%;
  height: 100%;
  max-height: calc(100vh - 200px);
  object-fit: contain;
  border-radius: 6px;
}
