@charset "UTF-8";
main {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

@media (min-width: 1024px) and (max-width: 1279px) {
  main {
    gap: 50px;
  }
}
@media (max-width: 1023px) {
  main {
    gap: 30px;
  }
}
.header {
  background-color: #000000;
  color: #fefefe;
  font-family: 22px;
  position: relative;
  padding: 15px 0;
}

.header-fixed-logo-img {
  height: 75px;
  width: auto;
}

.logo-header-img {
  height: 50px;
}
.footer-logo {
  width: 50%;
}
.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgb(254 254 254 / 30%);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: 9999;
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
}
.header-fixed.active {
  transform: translateY(0);
}

.header-fixed-content {
  padding: 15px 0;
}

.header-fixed-desktop {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1023px) {
  .header-fixed-desktop {
    display: none;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .header-fixed-desktop {
    display: none;
  }
}

.header-fixed-nav-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.header-fixed-nav-item {
  position: relative;
}
.header-fixed-nav-item.has-dropdown:hover .header-fixed-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header-fixed-nav-item.has-dropdown:hover .header-fixed-nav-link {
  color: #9d9d9d;
}
.header-fixed-nav-item.has-dropdown:hover .header-fixed-nav-link::after {
  transform: rotate(180deg);
}

.header-fixed-nav-link {
  color: #000000;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.header-fixed-nav-link::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 3px solid currentColor;
  transition: transform 0.3s ease;
  opacity: 0.7;
}
.header-fixed-nav-link:hover {
  color: #9d9d9d;
}

.header-fixed-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  transform: translateY(10px);
  background: rgba(254, 254, 254, 0.98);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  padding: 20px;
  min-width: 400px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  z-index: 1000;
  border: 1px solid rgba(0, 0, 0, 0.05);
  pointer-events: none;
}
.header-fixed-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 30px;
  transform: none;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid rgba(254, 254, 254, 0.98);
}
.header-fixed-dropdown-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.header-fixed-dropdown-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

@media (min-width: 1024px) and (max-width: 1279px) {
  .header-fixed-dropdown-menu {
    min-width: 500px;
    padding: 25px;
    left: 0;
    transform: translateY(10px);
  }
  .header-fixed-dropdown-menu::before {
    left: 30px;
    transform: none;
  }
  .header-fixed-dropdown-menu.active {
    transform: translateY(0);
  }
  .header-fixed-dropdown-content {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}
@media (max-width: 1023px) {
  .header-fixed-dropdown-menu {
    min-width: 300px;
    padding: 20px;
    left: 0;
    transform: translateY(10px);
  }
  .header-fixed-dropdown-menu::before {
    left: 20px;
    transform: none;
  }
  .header-fixed-dropdown-menu.active {
    transform: translateY(0);
  }
  .header-fixed-dropdown-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.header-fixed-dropdown-section h4 {
  color: #000000;
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 10px 0;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
}
.header-fixed-dropdown-section h4::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 20px;
  height: 1px;
  background: linear-gradient(90deg, #9d9d9d, transparent);
}
.header-fixed-dropdown-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.header-fixed-dropdown-section ul li {
  margin-bottom: 8px;
}
.header-fixed-dropdown-section ul li:last-child {
  margin-bottom: 0;
}
.header-fixed-dropdown-section ul li a {
  color: #000000;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 0;
  display: block;
  transition: all 0.2s ease;
  border-radius: 6px;
  padding-left: 10px;
  position: relative;
}
.header-fixed-dropdown-section ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: linear-gradient(45deg, #9d9d9d, #000000);
  border-radius: 2px;
  transition: height 0.2s ease;
}
.header-fixed-dropdown-section ul li a:hover {
  color: #9d9d9d;
  background: rgba(0, 0, 0, 0.03);
  padding-left: 14px;
}
.header-fixed-dropdown-section ul li a:hover::before {
  height: 12px;
}

@media (min-width: 1024px) and (max-width: 1279px) {
  .dropdown-menu {
    min-width: 500px;
    padding: 25px;
    left: 0;
    transform: translateX(0) translateY(10px);
  }
  .dropdown-menu::before {
    left: 30px;
    transform: translateX(0);
  }
  .dropdown-content {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .dropdown-section h4 {
    font-size: 16px;
    margin-bottom: 12px;
  }
  .dropdown-section ul li a {
    font-size: 13px;
    padding: 6px 0;
  }
}
.mobile-nav-item.has-dropdown .mobile-nav-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-nav-item.has-dropdown .mobile-nav-link .mobile-nav-text {
  flex: 1;
  cursor: pointer;
  padding: 12px 0;
  transition: color 0.2s ease;
}
.mobile-nav-item.has-dropdown .mobile-nav-link .mobile-nav-text:hover {
  color: #9d9d9d;
}
.mobile-nav-item.has-dropdown .mobile-nav-link .mobile-nav-arrow {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  cursor: pointer;
  padding: 6px;
  border-radius: 4px;
  transition: transform 0.2s ease;
}
.mobile-nav-item.has-dropdown .mobile-nav-link .mobile-nav-arrow::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  opacity: 0.9;
  transition: transform 0.2s ease;
}
.mobile-nav-item.has-dropdown .mobile-nav-link.active .mobile-nav-arrow::after {
  transform: rotate(180deg);
}
.mobile-nav-item.has-dropdown .dropdown-menu {
  position: static;
  opacity: 1;
  visibility: visible;
  transform: none;
  background: transparent;
  -webkit-backdrop-filter: none;
          backdrop-filter: none;
  box-shadow: none;
  border: none;
  border-radius: 0;
  padding: 0 0 0 12px;
  margin-top: 6px;
  min-width: auto;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.18s ease;
}
.mobile-nav-item.has-dropdown .dropdown-menu::before {
  display: none;
}
.mobile-nav-item.has-dropdown .dropdown-menu.active {
  max-height: 500px;
}
.mobile-nav-item.has-dropdown .dropdown-content {
  display: block;
  gap: 0;
}
.mobile-nav-item.has-dropdown .dropdown-section {
  margin-bottom: 14px;
}
.mobile-nav-item.has-dropdown .dropdown-section:last-child {
  margin-bottom: 0;
}
.mobile-nav-item.has-dropdown .dropdown-section h4 {
  color: #fefefe;
  font-size: 14px;
  margin-bottom: 6px;
  border-bottom-color: rgba(255, 255, 255, 0);
}
.mobile-nav-item.has-dropdown .dropdown-section h4::after {
  background: none;
}
.mobile-nav-item.has-dropdown .dropdown-section ul li a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  padding: 6px 0 6px 10px;
  border-radius: 0;
}
.mobile-nav-item.has-dropdown .dropdown-section ul li a::before {
  display: none;
}
.mobile-nav-item.has-dropdown .dropdown-section ul li a:hover, .mobile-nav-item.has-dropdown .dropdown-section ul li a:focus-visible {
  color: #fefefe;
  background: rgba(255, 255, 255, 0.06);
  outline: none;
}

.mobile-nav-item.has-dropdown .dropdown-menu {
  border-left: 0;
  margin-left: 0;
}

.mobile-nav {
  display: none;
}
@media (max-width: 1023px) {
  .mobile-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .mobile-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

.mobile-nav-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-logo img {
  height: 25px;
  width: auto;
}

.mobile-nav-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 5px;
  padding: 10px 0;
}

.mobile-nav-address, .mobile-nav-time {
  color: #fefefe;
  font-size: 14px;
  line-height: 110%;
  margin: 0;
}

.burger-menu {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  transition: transform 0.2s ease;
}
.burger-menu:hover {
  transform: none;
}
.burger-menu.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
.burger-menu.active .burger-line:nth-child(2) {
  opacity: 0;
}
.burger-menu.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.burger-line {
  width: 22px;
  height: 2px;
  background-color: #fefefe;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.2s ease;
}

/* .mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background-color: #000000;
  z-index: 1000;
  transform: translateX(-100%);
  transition: transform 0.25s ease-in-out;
  overflow-y: auto;
}
.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: sticky;
  top: 0;
  background-color: #000000;
  z-index: 1001;
}

.mobile-menu-logo img {
  height: 60px;
  width: auto;
}

.mobile-menu-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}
.mobile-menu-close:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}
.mobile-menu-close:active {
  transform: scale(0.95);
} */

.close-line {
  position: absolute;
  width: 20px;
  height: 2px;
  background-color: #fefefe;
  border-radius: 1px;
  transition: all 0.3s ease;
}
.close-line:first-child {
  transform: rotate(45deg);
}
.close-line:last-child {
  transform: rotate(-45deg);
}

/* .mobile-menu-content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
} */

.mobile-contacts {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 8px;
}

.mobile-phone, .mobile-mail {
  color: #fefefe;
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
  transition: color 0.2s ease;
}
.mobile-phone:hover, .mobile-phone:focus-visible, .mobile-mail:hover, .mobile-mail:focus-visible {
  color: #9d9d9d;
  outline: none;
}

.mobile-nav-menu {
  flex: 1;
}

.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
}

.mobile-nav-item {
  width: 100%;
}

.mobile-nav-link {
  color: #fefefe;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color 0.2s ease;
}
.mobile-nav-link:hover, .mobile-nav-link:focus-visible {
  color: #9d9d9d;
  outline: none;
}

.mobile-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-social-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}
.mobile-social-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}
.mobile-social-link img {
  width: 24px;
  height: 24px;
}

@media (min-width: 1024px) and (max-width: 1279px) {
  /* .mobile-menu {
    width: 420px;
    left: auto;
    right: 0;
    transform: translateX(100%);
  }
  .mobile-menu.active {
    transform: translateX(0);
  }
  .mobile-menu-header {
    padding: 20px 22px;
  }
  .mobile-menu-content {
    padding: 22px;
  } */
  /* .mobile-nav-info {
    padding: 15px 0;
  }
  .mobile-nav-address, .mobile-nav-time {
    font-size: 13px;
  }
  .mobile-nav-link {
    font-size: 18px;
    padding: 12px 0;
  }
  .mobile-phone, .mobile-mail {
    font-size: 16px;
  }
  .mobile-address, .mobile-time {
    font-size: 13px;
  } */
  .header-fixed-mobile .mobile-nav-address,
  .header-fixed-mobile .mobile-nav-time {
    font-size: 13px;
  }
  .header-fixed-content {
    padding: 12px 0;
  }
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}
.header-fixed-whatsapp-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  transition: all 0.3s ease;
}
.header-fixed-whatsapp-link img {
  width: 24px;
  height: 24px;
  filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0%) contrast(100%);
}

.header-fixed-mobile {
  display: none;
}
@media (max-width: 1023px) {
  .header-fixed-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .header-fixed-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

.header-fixed-mobile .mobile-logo img {
  width: auto;
}

.header-fixed-mobile .mobile-nav-address,
.header-fixed-mobile .mobile-nav-time {
  color: #000000;
  font-size: 14px;
  font-weight: 700;
}

.header-fixed-mobile .burger-line {
  background-color: #000000;
}

.top-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #fefefe;
  padding-bottom: 15px;
}
@media (max-width: 991px) {
  .top-header {
    display: none;
  }
}


.logo-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.logo-header-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.logo-header-text-address, .logo-header-text-time {
  line-height: 110%;
}

.top-header-right {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 11px;
}

.top-header-right-contacts {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
}

.top-header-right-contacts-phone, .top-header-right-contacts-mail {
  line-height: 110%;
  color: #fefefe;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.top-header-right-contacts-phone:hover, .top-header-right-contacts-mail:hover {
  color: #9d9d9d;
}

.top-header-right-social {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}

.top-header-right-social-link {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.top-header-right-social-link img {
  width: 34px;
  height: 34px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.top-header-right-social-link:hover img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(288deg) brightness(100%) contrast(1000%);
  color: #9d9d9d;
}

.bottom-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fefefe;
  justify-content: center;
  padding-top: 15px;
}
@media (max-width: 1023px) {
  .bottom-header {
    display: none;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .bottom-header {
    display: none;
  }
}

.bottom-header-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fefefe;
  list-style: none;
  gap: 40px;
}

.bottom-header-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
}
.bottom-header-item.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.bottom-header-item.has-dropdown:hover .bottom-header-item-link {
  color: #9d9d9d;
}
.bottom-header-item.has-dropdown:hover .bottom-header-item-link::after {
  transform: rotate(180deg);
}

.bottom-header-item-link {
  color: #fefefe;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.bottom-header-item-link::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  transition: transform 0.3s ease;
  opacity: 0.7;
}
.bottom-header-item-link:hover {
  color: #9d9d9d;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(254, 254, 254, 0.95);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  padding: 30px;
  min-width: 600px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  z-index: 1000;
  border: 1px solid rgba(255, 255, 255, 0.2);
  pointer-events: none;
}
.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid rgba(254, 254, 254, 0.95);
}
.dropdown-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.dropdown-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.dropdown-section h4 {
  color: #000000;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 15px 0;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  position: relative;
}
.dropdown-section h4::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, #9d9d9d, transparent);
}
.dropdown-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.dropdown-section ul li {
  margin-bottom: 12px;
}
.dropdown-section ul li:last-child {
  margin-bottom: 0;
}
.dropdown-section ul li a {
  color: #000000;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 0;
  display: block;
  transition: all 0.2s ease;
  border-radius: 8px;
  padding-left: 12px;
  position: relative;
}
.dropdown-section ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 0;
  background: linear-gradient(45deg, #9d9d9d, #000000);
  border-radius: 2px;
  transition: height 0.2s ease;
}
.dropdown-section ul li a:hover {
  color: #9d9d9d;
  background: rgba(0, 0, 0, 0.05);
  padding-left: 16px;
}
.dropdown-section ul li a:hover::before {
  height: 16px;
}

/* Футер */
.top-footer {
  background-color: #000000;
  color: #fefefe;
}

.top-footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-footer-confidentiality {
  flex: 1 1 15%;
  text-align: center;
}

.top-footer-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  justify-content: space-between;
  justify-items: end;
  list-style: none;
}

.top-footer-item-link {
  color: #fefefe;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}
.top-footer-item-link:hover {
  color: #9d9d9d;
}

.bottom-footer {
  background-color: #343434;
  color: #9d9d9d;
  padding: 20px 0;
}

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

.bottom-footer-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 35%;
}

.bottom-footer-info-address {
  text-align: center;
}

.bottom-footer-assurance {
  text-align: center;
}

.bottom-footer-developer {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
}

.bottom-footer-developer-link {
  color: #9d9d9d;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}
.bottom-footer-developer-link:hover {
  color: #fefefe;
}

.top-footer-logo {
  flex: 1 1 15%;
}
.top-footer-logo img {
  width: 15%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.bottom-footer-mobile {
  display: none;
  background-color: #343434;
  color: #9d9d9d;
  padding: 20px 0;
  font-size: 14px;
}

.bottom-footer-mobile-developer {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

@media (max-width: 1023px) {
  .top-footer,
  .bottom-footer {
    display: none;
  }
  .bottom-footer-mobile {
    display: flex;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .top-footer,
  .bottom-footer {
    display: none;
  }
  .bottom-footer-mobile {
    display: flex;
  }
}
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 0 0 0;
  background-color: #000000;
  color: #fefefe;
}

.hero-content-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
  padding: 90px 0;
}
.hero-content .hero-content-main-title {
  display: block;
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;
  font-size: 96px;
  line-height: 100%;
  color: #fefefe;
}
.hero-content .hero-content-seo-title {
  display: none;
}
.hero-content .hero-content-text {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 100%;
  color: #fefefe;
}

.hero-content-title {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-content-buttons {
  display: flex;
  gap: 35px;
}

.hero-image {
  position: relative;
  width: 60%;
  z-index: 899;
}

.hero-image-img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.non-desc {
  display: none;
}
.none-mob {
  display: flex;
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .hero-content-container {
    flex-direction: row;
    gap: 15px;
  }
  .hero-content {
    padding-top: 50px;
    padding-bottom: 60px;
    gap: 15px;
  }
  .hero-content .hero-content-main-title {
    font-size: 60px;
    line-height: 90%;
  }
  .hero-content .hero-content-text {
    font-size: 24px;
  }
  .hero-content-buttons {
    gap: 25px;
    flex-wrap: wrap;
  }
  .hero-image {
    width: 40%;
  }
}
.hero-tags-img {
  display:none;
}
@media (max-width: 1023px) {
  .none-mob {
    display: none;
  }
  .non-desc {
    display: flex;
  }
  .hero {
    padding: 0;
  }
  .btn-hero {
    width:80%;
  }
  .hero-content-container {
    flex-direction: column;
    gap: 30px;
  }
  .hero-content {
    padding-top: 30px;
    padding-bottom: 30px;
    gap: 25px;
    order: 1;
  }
  .hero-content .hero-content-main-title {
    font-size: 36px;
    line-height: 90%;
  }
  .hero-content .hero-content-text {
    font-size: 18px;
  }
  .hero-content-title {
    gap: 15px;
  }
  .hero-content-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    align-items: center;
  }
  .hero-content-buttons .btn {
    width: 100%;
    padding: 14px;
    font-size: 18px;
  }
  .hero-image {
    position: relative;
    display: flex;
    width: 100%;
    order: 2;
    height: 270px;
    z-index: 1;
  }
  .hero-tags-img {
    display: flex;
    flex-direction: column;
    gap: 33px;
  }
  .hero-info-price {
    border: 1px solid #fefefe;
border-radius: 8px;
padding: 12px;
width: 190px;
height: 45px;
font-weight: 400;
font-size: 20px;
line-height: 110%;
text-align: center;
color: #fefefe;
  }
  .hero-image .hero-image-img {
    position: absolute;
    border-radius: 8px;
    bottom: 0;
    right: 0;
    width: 35%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .hero-info-statics {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 100px;
  }
  .hero-bold-numb {
    font-weight: 700;
font-size: 32px;
line-height: 100%;
color: #fefefe;
  }
}
@media (max-width: 500px) {
  .hero-image .hero-image-img {
    width: 50%;
  }
}
.teazers-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 42px;
}

.teazers-content-block {
  border-bottom: 1px solid #161918;
  border-top: 1px solid #161918;
  padding: 40px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.teazers-content-block .teazers-content-block-text {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 100%;
  text-align: center;
  color: #161918;
}

@media (min-width: 1024px) and (max-width: 1279px) {
  .teazers-content {
    flex-direction: column;
  }
  .teazers-content-block {
    width: 100%;
  }
}
@media (max-width: 1023px) {
  .teazers-content {
    flex-direction: column;
  }
  .teazers-content-block {
    width: 100%;
  }
}
.stock-content-block-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 8px;
}
@media (min-width: 1200px) {
  .stock-content-block-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .stock-content-block-list {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    max-width: 800px;
    margin: 0 auto;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .stock-content-block-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}
@media (max-width: 1023px) {
  .stock-content-block-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}

.stock-content-block-list-item {
  display: flex;
  justify-content: space-between;
  border-radius: 16px;
  background: #343434;
  padding: 20px;
  gap: 20px;
  min-height: 200px;
  min-width: 250px;
}

@media (min-width: 1024px) and (max-width: 1279px) {
  .stock-content-block-list-item {
    min-width: 100%;
    flex-direction: column;
    padding: 16px;
    gap: 14px;
    min-height: auto;
    border-radius: 12px;
  }
}
@media (max-width: 1023px) {
  .stock-content-block-list-item {
    min-width: 100%;
    flex-direction: column;
    padding: 12px;
    gap: 12px;
    min-height: auto;
    border-radius: 12px;
  }
  .stock-content-block-list-item-img,
  .stock-content-block-list-item-img-big {
    order: 1;
  }
  .stock-content-block-list-item-content {
    order: 2;
  }
  .stock-content-block-list-item > .btn-white {
    order: 3;
    width: 100%;
    align-self: stretch;
  }
}
#stock-item-1 {
  grid-column: span 2/span 2;
}
@media (min-width: 1024px) and (max-width: 1279px) {
  #stock-item-1 {
    grid-column: none;
  }
}
@media (max-width: 1023px) {
  #stock-item-1 {
    grid-column: none;
  }
}

#stock-item-2 {
  grid-column: span 2/span 2;
  grid-column-start: 1;
  grid-row-start: 2;
}
@media (min-width: 1024px) and (max-width: 1279px) {
  #stock-item-2 {
    grid-column: none;
    grid-row: none;
    grid-column-start: none;
    grid-row-start: none;
  }
}
@media (max-width: 1023px) {
  #stock-item-2 {
    grid-column: none;
    grid-row: none;
    grid-column-start: none;
    grid-row-start: none;
  }
}

#stock-item-3 {
  grid-row: span 2/span 2;
  grid-column-start: 3;
  grid-row-start: 1;
}
@media (min-width: 1024px) and (max-width: 1279px) {
  #stock-item-3 {
    grid-column: none;
    grid-row: none;
    grid-column-start: none;
  }
}
@media (max-width: 1023px) {
  #stock-item-3 {
    grid-column: none;
    grid-row: none;
    grid-column-start: none;
  }
}

#stock-item-4 {
  grid-column: span 2/span 2;
  grid-row: span 2/span 2;
  grid-column-start: 2;
  grid-row-start: 3;
}
@media (min-width: 1024px) and (max-width: 1279px) {
  #stock-item-4 {
    grid-column: none;
    grid-row: none;
    grid-column-start: none;
  }
}
@media (max-width: 1023px) {
  #stock-item-4 {
    grid-column: none;
    grid-row: none;
    grid-column-start: none;
  }
}

#stock-item-5 {
  grid-row: span 2/span 2;
  grid-column-start: 1;
  grid-row-start: 3;
}
@media (min-width: 1024px) and (max-width: 1279px) {
  #stock-item-5 {
    grid-row: none;
    grid-column-start: none;
    grid-column: none;
  }
}
@media (max-width: 1023px) {
  #stock-item-5 {
    grid-row: none;
    grid-column-start: none;
    grid-column: none;
  }
}

.stock-content-block-list-item-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stock-content-block-list-quantity-services {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 110%;
  color: #fefefe;
}

.stock-content-block-list-item-title {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 88%;
  color: #fefefe;
}

.stock-content-block-list-item-text {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 110%;
  color: #fefefe;
}

.stock-content-block-list-item-img {
  display: flex;
  justify-content: center;
  align-items: center;
}
.stock-content-block-list-item-img img {
  width: 300px;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 16px;
}

@media (min-width: 1024px) and (max-width: 1279px) {
  .stock-content-block-list-item-img img {
    width: 100%;
    height: 220px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .stock-content-block-list-item-title {
    font-weight: 600;
    font-size: 26px;
    line-height: 110%;
  }
  .stock-content-block-list-item-img,
  .stock-content-block-list-item-img-big {
    order: 1;
  }
  .stock-content-block-list-item-content {
    order: 2;
  }
  .stock-content-block-list-item > .btn-white {
    order: 3;
    width: 100%;
    align-self: stretch;
  }
}
@media (max-width: 1023px) {
  .stock-content-block-list-item-img img {
    width: 100%;
    height: 180px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .stock-content-block-list-item-title {
    font-weight: 600;
    font-size: 22px;
    line-height: 110%;
  }
  .stock-content-block-list-quantity-services {
    display: none;
  }
  .stock-content-block-list-item-text {
    font-size: 16px;
    line-height: 140%;
  }
  .stock-content-block-list-item-content .btn-white {
    margin-top: 12px;
    width: 100%;
  }
  .stock-content-block-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
}
.stock-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stock-big-image {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.backround-none {
  background: none;
}

.stock-content-block-list-item-img-big {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: flex-end;
  justify-content: space-between;
}
.stock-content-block-list-item-img-big img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 75%;
  -o-object-fit: cover;
     object-fit: cover;
}

.big-stock-btn {
  width: 30%;
}

@media (min-width: 1024px) and (max-width: 1279px) {
  .stock-content-block-list-item.stock-big-image {
    gap: 14px;
  }
  .stock-content-block-list-item-img-big {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    text-align: center;
  }
  .stock-content-block-list-item-img-big img {
    position: static;
  }
}
@media (max-width: 1023px) {
  .stock-content-block-list-item.stock-big-image {
    gap: 12px;
  }
  .stock-content-block-list-item-img-big {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    text-align: center;
  }
  .stock-content-block-list-item-img-big img {
    position: static;
  }
}
.price-content-list-item-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  border-bottom: 1px solid #161918;
  padding: 20px 0px 0px 0px;
  margin-bottom: 10px;
}
.price-content-list-item-title p {
  font-size: 40px;
  line-height: 70%;
}
.price-content-list-item-title p span {
  font-weight: 400;
  font-size: 32px;
  line-height: 100%;
}
.price-content-list-item-title-arrow {
  width: 24px;
  height: 24px;
  background-image: url("/images/arrow.svg");
  background-size: contain;
  transform: rotate(180deg);
  transition: transform 0.3s ease-in-out;
}
.price-content-list-item-title.active .price-content-list-item-title-arrow {
  transform: rotate(0deg);

}
.price-content-list-item-content {
  display: none;
}
.price-content-list-item-content.active {
  display: block;
}
.price-content-list-item-content-list {
  background-color: #343434;
  border-radius: 8px;
}
.price-content-list-item-content-list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 10px 0px 10px;
  border-bottom: 1px solid #fefefe;
  font-weight: 400;
  font-size: 32px;
  line-height: 100%;
  color: #fefefe;
  gap: 10px;
}
.price-content-list-item-content-list-item:last-child {
  border-bottom: none;
}

@media (max-width: 1023px) {
  .price-content-list-item-title p {
    display: flex;
    gap: 10px;
    font-weight: 600;
    font-size: 22px;
    line-height: 123%;
    align-items: center;
  }
  .teazers-content-block .teazers-content-block-text {
    font-size: 20px;
}
  .price-content-list-item-title p span {
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
  }
  .price-content-list-item-content-list-item {
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
  }
}
.akcii-content-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 40px;
}

.akcii-content-list-item-big {
  grid-column: span 3/span 3;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  background-color: #343434;
  border-radius: 16px;
  padding: 40px;
  gap: 20px;
}
.akcii-content-list-item-big-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
.akcii-content-list-item-big-content-title {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;
  font-size: 96px;
  line-height: 88%;
  color: #fefefe;
  margin-bottom: 10px;
}
.akcii-content-list-item-big-content-description {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 100%;
  color: #fefefe;
  margin-bottom: 1px;
}
.akcii-content-list-item-big-content-description-text {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 110%;
  color: #9d9d9d;
  margin-bottom: 30px;
}

.akcii-content-list-item {
  background-color: #343434;
  border-radius: 16px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  color: #fefefe;
  gap: 20px;
}
.akcii-content-list-item-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.akcii-content-list-item-price-text {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;
  font-size: 96px;
  line-height: 88%;
  color: #fefefe;
}
.akcii-content-list-item-price-text-old {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 100%;
  text-decoration: line-through;
  color: #fefefe;
}
.akcii-content-list-item-title-text {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 110%;
  text-align: center;
  color: #fefefe;
}
.akcii-content-list-item-discount {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.akcii-content-list-item-discount-text {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;
  font-size: 96px;
  line-height: 88%;
  color: #fefefe;
}
.akcii-content-list-item-discount-text-description {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 100%;
  text-align: center;
  color: #fefefe;
}

@media (min-width: 1024px) and (max-width: 1279px) {
  .akcii-content-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .akcii-content-list-item {
    grid-column: 1;
    border-radius: 8px;
  }
  .akcii-content-list-item-price-text {
    font-weight: 400;
    font-size: 48px;
    line-height: 88%;
  }
  .akcii-content-list-item-price-text-old {
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    text-decoration: line-through;
  }
  .akcii-content-list-item-title-text {
    font-size: 18px;
  }
  .akcii-content-list-item-big {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .akcii-content-list-item-big-content-title {
    font-size: 48px;
  }
}
@media (max-width: 1023px) {
  .akcii-content-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .akcii-content-list-item-big {
    flex-direction: column-reverse;
    align-items: center;
  }
  .akcii-content-list-item-discount-text {
    font-weight: 400;
    font-size: 48px;
    line-height: 88%;
  }
  .akcii-content-list-item-discount-text-description {
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
  }
  .akcii-content-list-item {
    grid-column: 1;
    border-radius: 8px;
  }
  .akcii-content-list-item-price-text {
    font-weight: 400;
    font-size: 48px;
    line-height: 88%;
  }
  .akcii-content-list-item-price-text-old {
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    text-decoration: line-through;
  }
  .akcii-content-list-item-title-text {
    font-size: 16px;
  }
  .akcii-content-list-item-big-content {
    align-items: center;
  }
  .akcii-content-list-item-big {
    grid-column: 1;
  }
  .akcii-content-list-item-big-content-title {
    font-weight: 400;
    font-size: 48px;
    line-height: 88%;
    text-align: center;
  }
  .akcii-content-list-item-big-content-description {
    font-weight: 400;
    font-size: 16px;
    text-align: center;
  }
  .akcii-content-list-item-big-content-description-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 110%;
    text-align: center;
    width: 100%;
  }
}
.free-consultation-container {
  display: flex;
  gap: 72px;
}

.free-consultation-title-text h2 {
  padding-bottom: 10px;
}

.free-consultation-title {
  background-color: #e9e9e9;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid var(--accent-color);
}

.free-consultation-title-text-description-container-text {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 110%;
  color: #000000;
}

.free-consultation-title-text-description-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 66px;
}

.free-consultation-title-text-description {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 88%;
  color: #161918;
  margin-bottom: 30px;
}

.free-consultation-title-button-price-text {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;
  font-size: 96px;
  line-height: 88%;
  color: #161918;
}

.free-consultation-title-button-price-text-old {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 100%;
  text-decoration: line-through;
  color: #9d9d9d;
}

.free-consultation-content-list {
  display: flex;
  gap: 30px;
}

.free-consultation-content-list-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.free-consultation-content-list-item.akne {
  background-color: #343434;
  color: #fefefe;
  border-radius: 16px;
}
.free-consultation-content-list-item.trichology {
  background-color: #fefefe;
  border: 1px solid #161918;
  border-radius: 16px;
}

.free-consultation-content-list-item-title {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.free-consultation-content-list-item-title-text {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 88%;
  text-align: center;
  padding: 20px 0;
}
.free-consultation-content-list-item-title-text.akne {
  color: #fefefe;
  border-bottom: 1px solid #fefefe;
}
.free-consultation-content-list-item-title-text.trichology {
  color: #161918;
  border-bottom: 1px solid #161918;
}

.free-consultation-content-list-item-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 30px 20px;
}

.free-consultation-content-list-item-text-text {
  font-family: "Source Sans Pro", sans-serif;
  text-align: center;
  font-weight: 400;
  font-size: 22px;
  line-height: 110%;
}

.free-consultation-title-button {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
/* Исправленные стили для Swiper слайдера бесплатной консультации */
.free-consultation-swiper {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.free-consultation-swiper .swiper-wrapper {
  display: flex;
  width: 100%;
}

.free-consultation-swiper .swiper-slide {
  flex-shrink: 0;
  width: 100% !important; /* Принудительно устанавливаем ширину */
  height: auto;
  box-sizing: border-box;
}

/* Десктопные стили - исправление */
@media (min-width: 1024px) {
  .free-consultation-swiper {
    overflow: visible; /* Показываем все слайды */
  }
  
  .free-consultation-swiper .swiper-wrapper {
    display: flex;
    gap: 30px;
    transform: none !important; /* Отключаем трансформацию Swiper */
  }
  
  .free-consultation-swiper .swiper-slide {
    flex: 1; /* Равномерно распределяем слайды */
    width: auto !important; /* Автоматическая ширина */
    margin-right: 0 !important; /* Убираем отступы Swiper */
  }
  
  /* Скрываем навигацию на десктопе */
  .free-consultation-swiper-nav {
    display: none !important;
  }
}
.price-content-list-title {
  width: 60%;
}
/* Мобильные стили */
@media (max-width: 1023px) {
  .free-consultation-swiper {
    overflow: hidden;
  }
  
  .free-consultation-swiper .swiper-wrapper {
    transform: translate3d(0px, 0px, 0px); /* Включаем трансформацию Swiper */
  }
  
  .free-consultation-swiper .swiper-slide {
    width: 100% !important;
  }
  
  .free-consultation-swiper-nav {
    display: none !important;
  }
}

.free-consultation-content-list-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  height: 100%;
  min-height: 400px;
  width: 100%;
  box-sizing: border-box;
}

/* Навигация слайдера */
.free-consultation-swiper-nav {
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding: 0 20px;
}

.free-consultation-swiper-prev,
.free-consultation-swiper-next {
  background: #343434;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #fefefe;
  z-index: 10;
}

.free-consultation-swiper-prev:hover,
.free-consultation-swiper-next:hover {
  background: #555;
  transform: scale(1.1);
}

.free-consultation-swiper-prev.swiper-button-disabled,
.free-consultation-swiper-next.swiper-button-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.free-consultation-swiper-pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.free-consultation-swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 1;
}

.free-consultation-swiper-pagination .swiper-pagination-bullet-active {
  background: #343434;
  transform: scale(1.2);
}

@media (max-width: 1023px) {
  .free-consultation-container {
    flex-direction: column;
    gap: 30px;
  }
  .free-consultation-title-text h2 {
    font-weight: 400;
    font-size: 32px;
    line-height: 100%;
  }
  .free-consultation-title-text-description {
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
  }
  .free-consultation-title-text-description-container-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 110%;
    margin-bottom: 20px;
  }
  .free-consultation-title-text-description {
    margin-bottom: 25px;
  }
  .free-consultation-title-text-description-container {
    margin-bottom: 0;
  }
  .free-consultation-title-button-price-text {
    font-weight: 400;
    font-size: 48px;
    line-height: 88%;
  }
  .free-consultation-title-button-price-text-old {
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    text-decoration: line-through;
  }
  .free-consultation-content-list {
    flex-direction: column-reverse;
  }
  .free-consultation-content-list-item {
    width: 100%;
  }
}
.treatment-grounds-nav-main {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  justify-items: center;
}

.treatment-grounds-nav-slider-btns {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-left: 24px;
  position: absolute;
  right: 0;
  bottom: 0;
}

.treatment-grounds-swiper-prev,
.treatment-grounds-swiper-next {
  position: static !important;
  width: 44px;
  height: 36px;
  border: 1px solid #bdbdbd;
  border-radius: 8px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border 0.2s, background 0.2s;
}

.treatment-grounds-swiper-prev:hover,
.treatment-grounds-swiper-next:hover {
  border: 1.5px solid #363636;
  background: #f5f5f5;
}

.treatment-grounds {
  padding: 100px 0;
  background-color: #fefefe;
}
.treatment-grounds-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 60px;
}
.treatment-grounds-nav {
  width: 100%;
  position: relative;
}
.treatment-grounds-nav-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.treatment-grounds-nav-item {
  background: transparent;
  color: #222;
  border: none;
  border-radius: 8px;
  padding: 12px 28px;
  font-size: 18px;
  font-weight: 400;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  position: relative;
  outline: none;
}
.treatment-grounds-nav-item.active {
  background: #363636;
  color: #fff;
  font-weight: 500;
}
.treatment-grounds-nav-item:not(.active) {
  background: transparent;
  color: #222;
  font-weight: 400;
}
.treatment-grounds-nav-item:not(.active)::after {
  content: "";
  display: block;
  height: 2px;
  width: 100%;
  background: #bdbdbd;
  position: absolute;
  left: 0;
  bottom: 0;
  border-radius: 1px;
  transition: background 0.2s;
}
.treatment-grounds-nav-item.active::after {
  display: none;
}
.treatment-grounds-nav-item {
  background: transparent;
  border: none;
  padding: 12px 24px;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 18px;
  line-height: 120%;
  color: #161918;
  cursor: pointer;
  border-bottom: 1px solid #9d9d9d;
  transition: all 0.3s ease;
  white-space: nowrap;
  border-radius: 4px 4px 0 0;
}
.treatment-grounds-nav-item:hover {
  background-color: #4e4e4e;
  color: #fefefe;
}
.treatment-grounds-nav-item.active {
  background-color: #343434;
  color: #fefefe;
  border-bottom-color: #343434;
}
.treatment-grounds .treatment-grounds-swiper-next,
.treatment-grounds .treatment-grounds-swiper-prev {
  width: 40px;
  height: 40px;
  background-color: transparent;
  border: 1px solid #161918;
  border-radius: 4px;
  color: #161918;
  transition: all 0.3s ease;
}
.treatment-grounds .treatment-grounds-swiper-next:hover,
.treatment-grounds .treatment-grounds-swiper-prev:hover {
  background-color: #161918;
  color: #fefefe;
}
.treatment-grounds .treatment-grounds-swiper-next::after,
.treatment-grounds .treatment-grounds-swiper-prev::after {
  font-size: 14px;
  font-weight: normal;
}
.treatment-grounds .treatment-grounds-swiper-next {
  right: 0;
}
.treatment-grounds .treatment-grounds-swiper-prev {
  left: 0;
}
.treatment-grounds-content-area {
  width: 100%;
  min-height: 400px;
}
.treatment-grounds-category {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.treatment-grounds-category.active {
  display: block !important;
  opacity: 1;
  transform: translateY(0);
}
.treatment-grounds-category:not(.active) {
  display: none !important;
  opacity: 0;
  transform: translateY(20px);
}
.treatment-grounds-swiper {
  width: 100%;
  padding: 0 50px;
  position: relative;
}
.treatment-grounds-swiper .swiper-slide {
  height: auto;
}
.treatment-grounds-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}
.treatment-grounds-card {
  background-color: var(--accent-color);
  color: #fefefe;
  padding: 40px 30px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 20px;
  min-height: 400px;
  transition: transform 0.3s ease;
}
.treatment-grounds-card:hover {
  transform: translateY(-5px);
}
.treatment-grounds-card-title {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 500;
  font-size: 28px;
  line-height: 110%;
  text-transform: uppercase;
  margin: 0;
}
.treatment-grounds-card-indications {
  flex: 1;
}
.treatment-grounds-card-subtitle {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 16px;
  line-height: 120%;
  margin-bottom: 15px;
  color: #fefefe;
}
.treatment-grounds-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.treatment-grounds-card-list li {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 16px;
  line-height: 140%;
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}
.treatment-grounds-card-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #fefefe;
}
.treatment-grounds-card-price {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 110%;
  color: #fefefe;
}
.treatment-grounds-card-btn {
  width: 100%;
  margin-top: auto;
}
@media (max-width: 1023px) {
  .treatment-grounds {
    padding: 60px 0;
  }
  .treatment-grounds-content {
    gap: 40px;
  }
  .treatment-grounds-nav .swiper {
    padding: 0 10px;
  }
  .treatment-grounds-nav .swiper-wrapper {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
  }
  .treatment-grounds-nav .swiper-slide {
    flex: 0 0 auto;
    max-width: none;
  }
  .treatment-grounds-nav-item {
    font-size: 16px;
    padding: 10px 16px;
    border-bottom: 1px solid #9d9d9d;
  }
  .treatment-grounds-nav-item.active {
    background-color: #343434;
    color: #fefefe;
    border-bottom-color: #343434;
  }
  .treatment-grounds .swiper-button-next,
  .treatment-grounds .swiper-button-prev {
    display: none;
  }
  .treatment-grounds-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .treatment-grounds-card {
    padding: 30px 20px;
    min-height: 350px;
  }
  .treatment-grounds-card-title {
    font-size: 24px;
  }
  .treatment-grounds-card-list li {
    font-size: 14px;
  }
  .treatment-grounds-card-price {
    font-size: 20px;
  }
  .treatment-grounds .treatment-grounds-nav-main {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding: 0 16px;
  }
  .treatment-grounds .treatment-grounds-nav-main::-webkit-scrollbar {
    display: none;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .treatment-grounds-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.works-exemple-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
  position: relative;
}

.works-exemple-slider-btns {
  display: none;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.works-exemple-swiper-prev,
.works-exemple-swiper-next {
  position: static !important;
  margin: 0 !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  transform: none !important;
  width: 36px !important;
  height: 36px !important;
  background: #fff !important;
  border-radius: 9999px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #222 !important;
  border: 1px solid #eee;
  transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
  font-size: 18px;
}

.works-exemple-swiper-prev:hover,
.works-exemple-swiper-next:hover {
  background: #fafafa !important;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

.works-exemple-swiper-prev::after,
.works-exemple-swiper-next::after {
  font-size: 20px !important;
  color: #222 !important;
}

.works-exemple-slider .swiper-wrapper {
  display: flex;
}
.works-exemple-slider .swiper-slide {
  background: #fff;
  overflow: hidden;
  border: 1px solid #eee;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  border-radius: 16px;
  height: 100%;
  margin: 0 auto;
  position: relative;
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.1s;
}
.works-exemple-slider .swiper-slide:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
.works-exemple-slider .works-exemple-img {
  width: 100%;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
  display: block;
  background: #eaeaea;
  transition: transform 0.2s;
}
.works-exemple-slider .swiper-slide:hover .works-exemple-img {
  transform: scale(1.02);
}
.works-exemple-slider .works-exemple-caption {
  font-size: 0.95rem;
  font-weight: 600;
  margin-top: 10px;
  color: #111;
  letter-spacing: 0.02em;
  text-align: center;
}
.works-exemple-slider .swiper-pagination {
  bottom: 8px;
}
.works-exemple-slider .swiper-pagination .swiper-pagination-bullet {
  background: #999;
  opacity: 0.35;
  width: 6px;
  height: 6px;
}
.works-exemple-slider .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: #222;
}

.works-exemple-modal {
  display: none;
  position: fixed;
  z-index: 9999999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}

.works-exemple-modal.active {
  display: flex;
}

.works-exemple-modal-img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  background: #fff;
}

.works-exemple-modal-close {
  position: absolute;
  top: 32px;
  right: 32px;
  font-size: 2.2rem;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  transition: color 0.2s;
}

.works-exemple-modal-close:hover {
  color: #ff5a5a;
}

@media (max-width: 768px) {
  .works-exemple {
    padding: 24px 0;
  }
  .works-exemple-header {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-bottom: 12px;
  }
  .works-exemple-slider-btns {
    justify-content: flex-end;
  }
  .works-exemple-slider .swiper-slide {
    border-radius: 10px;
    padding-bottom: 8px;
  }
  .works-exemple-caption {
    font-size: 0.9rem;
    margin-top: 8px;
  }
  .works-exemple-modal-img {
    max-width: 98vw;
    max-height: 60vh;
  }
  .works-exemple-modal-close {
    top: 12px;
    right: 12px;
    font-size: 1.5rem;
  }
}
.works-exemple-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
  position: relative;
}

.works-exemple-slider-btns {
  display: none;
  gap: 8px;
  position: relative;
  z-index: 2;
}

.works-exemple-swiper-prev,
.works-exemple-swiper-next {
  position: static !important;
  margin: 0 !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  transform: none !important;
}

.works-exemple {
  padding: 40px 0;
  background: #fff;
}
.works-exemple-title {
  font-size: 2rem;
  margin-bottom: 24px;
  text-align: left;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.works-exemple-slider {
  width: 100%;
  position: relative;
}
.works-exemple-slider .swiper-wrapper {
  display: flex;
}
.works-exemple-slider .swiper-slide img {
  width: 100%;
  display: block;
  border-radius: 16px 16px 0 0;
}
.works-exemple-slider .swiper-pagination {
  bottom: 8px;
}
.works-exemple-slider .swiper-pagination .swiper-pagination-bullet {
  background: #222;
  opacity: 0.3;
}
.works-exemple-slider .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}
.works-exemple-caption {
  font-size: 1rem;
  font-weight: 500;
  margin-top: 12px;
  color: #222;
  letter-spacing: 0.02em;
  text-align: center;
}

@media (max-width: 1024px) {
  .works-exemple-slider .swiper-slide {
    padding-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .works-exemple {
    padding: 24px 0;
  }
  .works-exemple-title {
    font-size: 1.3rem;
    margin-bottom: 16px;
    text-align: center;
  }
  .works-exemple-header {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-bottom: 12px;
  }
  .works-exemple-slider-btns {
    justify-content: flex-end;
  }
  .works-exemple-slider .swiper-slide {
    border-radius: 10px;
    padding-bottom: 8px;
  }
  .works-exemple-caption {
    font-size: 0.95rem;
    margin-top: 8px;
  }
}
.advantages-content {
  margin-top: 0;
}

.advantages-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 32px;
  letter-spacing: -0.5px;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 30px;
}

.grid-1 {
  grid-column: span 2/span 2;
}

.grid-2 {
  grid-column-start: 3;
}

.grid-3 {
  grid-row-start: 2;
}

.grid-4 {
  grid-column: span 2/span 2;
  grid-row-start: 2;
}

.grid-5 {
  grid-column: span 2/span 2;
  grid-row-start: 3;
}

.grid-6 {
  grid-column-start: 3;
  grid-row-start: 3;
}

.advantages-main {
  background: #343434;
  border-radius: 16px;
  padding: 40px 24px;
  color: #fefefe;
}

.advantages-main-value {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 12px;
}

.advantages-main-value span {
  display: block;
  font-size: 2.1rem;
  font-weight: 400;
  margin-top: 2px;
}

.advantages-main-desc {
  font-size: 1.1rem;
  font-weight: 400;
  margin-top: 18px;
  opacity: 0.95;
  border-top: 1px solid rgba(255, 255, 255, 0.2666666667);
  padding-top: 12px;
}

.advantages-item {
  background: #fff;
  border: 1.5px solid #d7d7d7;
  border-radius: 14px;
  padding: 28px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  min-height: 120px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.02);
}

.advantages-item-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.advantages-item-line {
  width: 100%;
  height: 2px;
  background: #eaeaea;
  margin: 6px 0 12px 0;
  border-radius: 2px;
}

.advantages-item-desc {
  font-size: 1rem;
  color: #222;
  opacity: 0.95;
}

.advantages-item-wide {
  grid-column: span 2;
}

@media (max-width: 1024px) {
  .advantages-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto auto;
    grid-template-areas: "main item1" "main item2" "item3 item4" "item5 item6";
    gap: 16px;
  }
  .advantages-main {
    padding: 28px 18px 18px 18px;
    min-height: 160px;
  }
  .advantages-main-value {
    font-size: 2.2rem;
  }
  .advantages-main-value span {
    font-size: 1.3rem;
  }
}
@media (max-width: 700px) {
  .advantages-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .advantages-main, .advantages-item {
    min-width: 0;
    width: 100%;
    border-radius: 10px;
    padding: 18px 10px 14px 10px;
    box-sizing: border-box;
  }
  .advantages-title {
    font-size: 1.3rem;
    margin-bottom: 18px;
  }
  .advantages-main-value {
    font-size: 1.5rem;
  }
  .advantages-main-value span {
    font-size: 1.1rem;
  }
  .advantages-item-title {
    font-size: 1.05rem;
  }
  .advantages-item-desc {
    font-size: 0.95rem;
  }
}
.reviews-content {
  margin-top: 0;
}

.reviews-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.reviews-slider-header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 12px;
}

.reviews-slider-btns {
  display: flex;
  gap: 8px;
}

.reviews-swiper-prev,
.reviews-swiper-next {
  position: static !important;
  margin: 0 !important;
  width: 36px !important;
  height: 36px !important;
  background: #fff !important;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #222 !important;
  border: 1px solid #e0e0e0;
  transition: background 0.2s, box-shadow 0.2s;
  font-size: 20px;
}

.reviews-swiper-prev:hover,
.reviews-swiper-next:hover {
  background: #f7f7f7 !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.reviews-swiper-prev::after,
.reviews-swiper-next::after {
  font-size: 20px !important;
  color: #222 !important;
}

.reviews-slider {
  width: 100%;
  padding-bottom: 32px;
}

.reviews-slide {
  background: #fff;
  border: 1.5px solid #bdbdbd;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  padding: 28px 22px 18px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 320px;
  max-width: 370px;
  margin: 0 auto;
  transition: box-shadow 0.2s;
}

.reviews-slide-stars {
  font-size: 1.2rem;
  color: #222;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.reviews-slide-name {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.reviews-slide-text {
  font-size: 1rem;
  color: #222;
  margin-bottom: 18px;
  line-height: 1.5;
}

.reviews-slide-footer {
  font-size: 0.95rem;
  color: #888;
  margin-top: auto;
  text-align: left;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.reviews-swiper-pagination {
  margin-top: 12px;
}
.reviews-swiper-pagination .swiper-pagination-bullet {
  background: #222;
  opacity: 0.3;
}
.reviews-swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

@media (max-width: 1024px) {
  .reviews-slide {
    min-height: 220px;
    max-width: 320px;
    padding: 18px 10px 12px 10px;
  }
  .reviews-title {
    font-size: 1.3rem;
    margin-bottom: 14px;
  }
}
@media (max-width: 700px) {
  .reviews-slider {
    padding-bottom: 18px;
  }
  .reviews-slide {
    min-height: 180px;
    max-width: 98vw;
    padding: 12px 4px 8px 4px;
    border-radius: 8px;
  }
  .reviews-slide-name {
    font-size: 1rem;
  }
  .reviews-slide-text {
    font-size: 0.95rem;
  }
  .reviews-slide-footer {
    font-size: 0.85rem;
  }
  .reviews-title {
    font-size: 1.1rem;
  }
}
.fqa {
  padding: 40px 0 0 0;
  font-family: "Montserrat", Arial, sans-serif;
}

.fqa-title {
  font-size: 2.1rem;
  font-weight: 500;
  margin-bottom: 32px;
  letter-spacing: 0.01em;
}

.fqa-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.fqa-item-header-content {
  display: flex;
  align-items: center;
  gap: 90px;
}

.fqa-item {
  background: #fff;
  border-radius: 8px;
  padding: 0 24px;
  transition: box-shadow 0.2s;
  position: relative;
}

.fqa-item-header {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 72px;
  cursor: pointer;
  position: relative;
  justify-content: space-between;
  border-bottom: 1px solid #343434;
  padding-bottom: 15px;
}

.fqa-item-header-content-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.fqa-avatar {
  border-radius: 16px;
  width: 100px;
  height: 100px;
  background: #fff;
}

.fqa-info {
  display: flex;
  flex-direction: column;
  min-width: 120px;
  gap:10px;
}

.fqa-name {
  font-weight: 400;
  font-size: 22px;
  line-height: 110%;
  color: #343434;
}

.fqa-role {
  font-size: 15px;
  line-height: 100%;
  color: #343434;
  font-style: italic;
}

.fqa-question {
  font-size: 40px;
  line-height: 88%;
  color: #343434;
  width:55%;
}

.fqa-toggle {
  background: none;
  border: none;
  width: 32px;
  height: 32px;
  cursor: pointer;
  position: relative;
}

.fqa-toggle:after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border-right: 2px solid #222;
  border-bottom: 2px solid #222;
  transform: rotate(45deg);
  position: absolute;
  top: 8px;
  left: 8px;
  transition: transform 0.2s;
}

.fqa-item.open .fqa-toggle:after {
  transform: rotate(-135deg);
}

.fqa-answer {
  padding-top: 30px;
  padding-bottom: 30px;
  display: none;
  font-weight: 400;
  font-size: 32px;
  line-height: 100%;
  color: #343434;
}

.fqa-item.open .fqa-answer {
  display: block;
}

@media (max-width: 700px) {
  .fqa-title {
    font-size: 1.2rem;
    margin-bottom: 18px;
  }
  .fqa-list {
    gap: 10px;
  }
  .fqa-item {
    padding: 0 10px;
    border-radius: 6px;
  }
  .fqa-item-header {
    min-height: 56px;
    gap: 10px;
  }
  .fqa-avatar {
    border-radius: 8px;
    width: 32px;
    height: 32px;
  }
  .fqa-info {
    min-width: 80px;
    gap:5px;
  }
  .fqa-name {
    font-weight: 400;
    font-size: 16px;
    line-height: 110%;
    color: #343434;
  }
  .fqa-role {
    font-size: 14px;
    line-height: 100%;
    color: #343434;
  }
  .fqa-question {
    margin-left: 0;
    font-size: 22px;
    width:100%;
  }
  .fqa-answer {
    padding-top: 16px;
    padding-bottom: 16px;
    margin-left: 0;
    font-weight: 400;
    font-size: 18px;
    color: #343434;
  }
  .fqa-item-header-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
.contacts {
  padding: 48px 0 100px 0;
  font-family: "Montserrat", Arial, sans-serif;
}

.contacts-content {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.contacts-info {
  min-width: 320px;
  max-width: 400px;
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contacts-title {
  font-size: 2.1rem;
  font-weight: 500;
  margin-bottom: 32px;
  letter-spacing: 0.01em;
}

.contacts-block {
  margin-bottom: 18px;
}

.contacts-label {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 100%;
  color: #161918;
  margin-bottom: 16px;
}

.contacts-value {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 110%;
  color: #161918;
}
.contacts-value a {
  text-decoration: none;
  color: #161918;
}

.contacts-line {
  border-bottom: 2px solid #222;
  margin-bottom: 18px;
  width: 100%;
}

.contacts-email {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 100%;
  color: #161918;
  text-decoration: none;
}

.contacts-socials {
  display: flex;
  gap: 18px;
  margin-top: 8px;
}

.contacts-social img {
  width: 28px;
  height: 28px;
  display: block;
  filter: grayscale(1) brightness(0.2);
  transition: filter 0.2s;
}

.contacts-map {
  flex: 50%;
  min-width: 320px;
  max-width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #f7f7f7;
}

#yandex-map {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

@keyframes balloonAppear {
  from {
    opacity: 0;
    transform: translate(-50%, -100%) scale(0.8);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -100%) scale(1);
  }
}
.ymaps-2-1-79-zoom {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.ymaps-2-1-79-zoom__button {
  background: #fff;
  border: 1px solid #e0e0e0;
}
.ymaps-2-1-79-zoom__button:hover {
  background: #f5f5f5;
}

.ymaps-2-1-79-placemark-overlay {
  cursor: pointer;
}

@media (max-width: 900px) {
  .contacts-content {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }
  .contacts-map {
    min-width: 0;
    max-width: 100%;
    height: 260px;
  }
  .contacts-info {
    max-width: 100%;
    min-width: 0;
  }
}
@media (max-width: 600px) {
  .contacts-title {
    font-size: 1.2rem;
    margin-bottom: 18px;
  }
  .contacts-label {
    font-size: 1rem;
  }
  .contacts-map {
    height: 180px;
    border-radius: 10px;
  }
  #yandex-map {
    border-radius: 10px;
  }
  .contacts-social img {
    width: 22px;
    height: 22px;
  }
}
.about_clinic {
  padding: 100px 0;
  background-color: #fefefe;
}
.about_clinic-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
  align-items: flex-start;
}
.about_clinic-text {
  flex: 1;
  max-width: 600px;
}
.about_clinic-title {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 500;
  font-size: 64px;
  line-height: 83%;
  color: #161918;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.about_clinic-greeting {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 130%;
  color: #161918;
  margin-bottom: 40px;
}
.about_clinic-description {
  margin-bottom: 50px;
}
.about_clinic-description p {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 150%;
  color: #161918;
  margin-bottom: 20px;
}
.about_clinic-description p:last-child {
  margin-bottom: 0;
}
.about_clinic-btn {
  border: 1px solid #161918;
  border-radius: 8px;
  padding: 16px;
  width: 40%;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 110%;
  text-align: center;
  color: #161918;
  cursor: pointer;
  background-color: #fefefe;
  width: auto;
  min-width: 250px;
  padding: 16px 32px;
  font-size: 20px;
  border: 1px solid #161918;
  background-color: transparent;
  color: #161918;
  transition: all 0.3s ease;
}
.about_clinic-btn:hover {
  background: #e5e5e5;
  color: #161918;
  transform: translateY(-2px);
}
.about_clinic-btn:hover {
  background-color: #161918;
  color: #fefefe;
  transform: translateY(-2px);
}
.about_clinic-image {
  flex: 1;
  max-width: 600px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.about_clinic-image img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1023px) {
  .about_clinic {
    padding: 60px 0;
  }
  .about_clinic-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    align-items: center;
  }
  .about_clinic-text {
    max-width: 100%;
    order: 2;
  }
  .about_clinic-title {
    font-size: 32px;
    line-height: 100%;
    margin-bottom: 20px;
    text-align: center;
  }
  .about_clinic-greeting {
    font-size: 20px;
    line-height: 130%;
    margin-bottom: 30px;
    text-align: center;
  }
  .about_clinic-description {
    margin-bottom: 30px;
  }
  .about_clinic-description p {
    font-size: 16px;
    line-height: 150%;
    margin-bottom: 15px;
    text-align: left;
  }
  .about_clinic-btn {
    width: 100%;
    max-width: 300px;
    font-size: 18px;
    padding: 14px 24px;
    margin: 0 auto;
    display: block;
  }
  .about_clinic-image {
    max-width: 100%;
    order: 1;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .about_clinic-content {
    gap: 60px;
  }
  .about_clinic-title {
    font-size: 48px;
  }
  .about_clinic-greeting {
    font-size: 24px;
  }
  .about_clinic-description p {
    font-size: 20px;
  }
}

.director {
  padding: 100px 0;
}
.director-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
  align-items: flex-start;
}
.director-image {
  flex: 0 0 400px;
  max-width: 400px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.director-image img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.director-text {
  flex: 1;
  max-width: 700px;
}
.director-title {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 500;
  font-size: 64px;
  line-height: 83%;
  color: #161918;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.director-name {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 120%;
  color: #161918;
  margin-bottom: 40px;
}
.director-message p {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 150%;
  color: #161918;
  margin-bottom: 20px;
}
.director-message p:last-child {
  margin-bottom: 0;
}
@media (max-width: 1023px) {
  .director {
    padding: 60px 0;
  }
  .director-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    align-items: center;
  }
  .director-image {
    flex: none;
    max-width: 300px;
    width: 100%;
    order: 1;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  .director-text {
    max-width: 100%;
    order: 2;
  }
  .director-title {
    font-size: 32px;
    line-height: 100%;
    margin-bottom: 15px;
    text-align: center;
  }
  .director-name {
    font-size: 24px;
    line-height: 120%;
    margin-bottom: 30px;
    text-align: center;
  }
  .director-message p {
    font-size: 16px;
    line-height: 150%;
    margin-bottom: 15px;
    text-align: left;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .director-content {
    gap: 60px;
  }
  .director-image {
    flex: 0 0 350px;
    max-width: 350px;
  }
  .director-title {
    font-size: 48px;
  }
  .director-name {
    font-size: 28px;
  }
  .director-message p {
    font-size: 20px;
  }
}

.info_window {
  padding: 8px 12px 8px 40px;
  border-radius: 12px;
  background-color: #313133;
  background-image: url("./info-icon.svg");
  background-position: 10px 8px;
  background-repeat: no-repeat;
  color: #f2f5fa;
  font-size: 14px;
  line-height: 20px;
  min-width: -moz-max-content;
  min-width: max-content;
}

.title {
  font-size: 20px;
  font-weight: 500;
  margin: 0;
}

.description {
  line-height: 20px;
  font-size: 14px;
  margin: 0;
  color: #7b7d85;
}

.balloon {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  row-gap: 8px;
  border-radius: 12px;
  padding: 8px 4px;
  height: 100%;
  width: 350px;
  overflow: hidden;
}

.skeleton-title {
  height: 20px;
  width: 45%;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  margin: 0 0 8px 0;
}

.description-container {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}

.skeleton-title,
.skeleton-description {
  background-color: rgba(0, 0, 0, 0.05);
}

.skeleton-description {
  height: 9px;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  margin: 0;
}

.skeleton-title::after,
.skeleton-description::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0) 100%);
  animation: loading 2s infinite;
}

.w40 {
  width: 40%;
}

.w60 {
  width: 60%;
}

.w70 {
  width: 70%;
}

.w80 {
  width: 80%;
}

@keyframes loading {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(200%);
  }
}
.form {
  background-color: #343434;
  padding: 80px 0;
}
.form .form-content {
  display: flex;
  gap: 72px;
  align-items: flex-start;
}
.form .form-left {
  flex: 1;
  max-width: 600px;
}
.form .form-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form .form-title {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 88%;
  color: #fefefe;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1023px) {
  .form .form-title {
    font-size: 28px;
    line-height: 100%;
  }
}
.form .form-description {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 110%;
  color: #fefefe;
  margin-bottom: 40px;
}
@media (max-width: 1023px) {
  .form .form-description {
    font-size: 18px;
    line-height: 120%;
    margin-bottom: 30px;
  }
}
.form .consultation-form {
  margin-bottom: 40px;
}
.form .form-inputs {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}
.form .form-input {
  width: 100%;
  padding: 16px 20px;
  background-color: #fefefe;
  border: 1px solid #343434;
  border-radius: 8px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  color: #161918;
  transition: border-color 0.3s ease;
}
.form .form-input::-moz-placeholder {
  color: #9d9d9d;
}
.form .form-input::placeholder {
  color: #9d9d9d;
}
.form .form-input:focus {
  outline: none;
  border-color: #161918;
}
.form .form-input.error {
  border-color: #ff4444;
}
@media (max-width: 1023px) {
  .form .form-input {
    padding: 14px 16px;
    font-size: 16px;
  }
}
.form .form-submit {
  width: 100%;
  padding: 16px 20px;
  background-color: transparent;
  border: 1px solid #fefefe;
  border-radius: 8px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 120%;
  color: #fefefe;
  cursor: pointer;
  transition: all 0.3s ease;
}
.form .form-submit:hover {
  background-color: #fefefe;
  color: #343434;
}
.form .form-submit:active {
  transform: translateY(1px);
}
@media (max-width: 1023px) {
  .form .form-submit {
    padding: 14px 16px;
    font-size: 16px;
  }
}
.form .form-privacy {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: #fefefe;
  margin-top: 20px;
  text-align: center;
}
@media (max-width: 1023px) {
  .form .form-privacy {
    font-size: 12px;
    margin-top: 15px;
  }
}
.form .form-privacy-link {
  color: #fefefe;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}
.form .form-privacy-link:hover {
  opacity: 0.8;
}
.form .form-messengers {
  margin-top: 40px;
}
@media (max-width: 1023px) {
  .form .form-messengers {
    margin-top: 30px;
  }
}
.form .form-messengers-title {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  color: #fefefe;
  margin-bottom: 20px;
  text-align: center;
}
@media (max-width: 1023px) {
  .form .form-messengers-title {
    font-size: 16px;
    margin-bottom: 15px;
  }
}
.form .form-messengers-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 1023px) {
  .form .form-messengers-icons {
    gap: 15px;
  }
}
.form .form-messenger-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 1px solid #fefefe;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.form .form-messenger-icon:hover {
  background-color: #fefefe;
}
.form .form-messenger-icon:hover img {
  filter: invert(1);
}
.form .form-messenger-icon img {
  width: 24px;
  height: 24px;
  transition: filter 0.3s ease;
}
@media (max-width: 1023px) {
  .form .form-messenger-icon {
    width: 45px;
    height: 45px;
  }
  .form .form-messenger-icon img {
    width: 20px;
    height: 20px;
  }
}
.form .form-image-placeholder {
  width: 100%;
  height: 400px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px dashed rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form .form-image-placeholder p {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}
@media (max-width: 1023px) {
  .form .form-image-placeholder {
    height: 200px;
  }
  .form .form-image-placeholder p {
    font-size: 14px;
  }
}
@media (max-width: 1023px) {
  .form {
    padding: 60px 0;
  }
  .form .form-content {
    flex-direction: column;
    gap: 40px;
  }
  .form .form-left {
    max-width: 100%;
  }
  .form .form-right {
    order: -1;
  }
}

.consultation-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
}
.consultation-modal.active {
  display: flex;
}

.consultation-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}

.consultation-modal-content {
  position: relative;
  background-color: #fefefe;
  border-radius: 16px;
  padding: 40px;
  max-width: 480px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1023px) {
  .consultation-modal-content {
    padding: 24px;
    width: 95%;
    max-width: 400px;
  }
}

.consultation-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  font-size: 24px;
  color: #9d9d9d;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.consultation-modal-close:hover {
  background-color: #343434;
  color: #fefefe;
}
@media (max-width: 1023px) {
  .consultation-modal-close {
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    font-size: 20px;
  }
}

.consultation-modal-header {
  margin-bottom: 32px;
  text-align: center;
}
@media (max-width: 1023px) {
  .consultation-modal-header {
    margin-bottom: 24px;
  }
}

.consultation-modal-title {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 500;
  font-size: 28px;
  line-height: 120%;
  color: #161918;
  margin: 0;
  text-align: center;
}
@media (max-width: 1023px) {
  .consultation-modal-title {
    font-size: 24px;
  }
}

.consultation-modal-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 1023px) {
  .consultation-modal-form {
    gap: 20px;
  }
}

.consultation-modal-inputs {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 1023px) {
  .consultation-modal-inputs {
    gap: 12px;
  }
}

.consultation-modal-input-group {
  position: relative;
}

.consultation-modal-input {
  width: 100%;
  padding: 16px 20px;
  background-color: #f7f7f7;
  border: 1px solid transparent;
  border-radius: 8px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #161918;
  transition: all 0.3s ease;
}
.consultation-modal-input::-moz-placeholder {
  color: #9d9d9d;
}
.consultation-modal-input::placeholder {
  color: #9d9d9d;
}
.consultation-modal-input:focus {
  outline: none;
  border-color: #161918;
  background-color: #fefefe;
}
.consultation-modal-input.error {
  border-color: #ff4444;
  background-color: #fff5f5;
}
@media (max-width: 1023px) {
  .consultation-modal-input {
    padding: 14px 16px;
    font-size: 14px;
  }
}

.consultation-modal-checkbox-group {
  margin-top: 8px;
}

.consultation-modal-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #9d9d9d;
}
@media (max-width: 1023px) {
  .consultation-modal-checkbox-label {
    font-size: 12px;
    gap: 10px;
  }
}

.consultation-modal-checkbox {
  display: none;
}

.consultation-modal-checkbox-custom {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 2px solid #343434;
  border-radius: 4px;
  background-color: #fefefe;
  position: relative;
  transition: all 0.3s ease;
}
@media (max-width: 1023px) {
  .consultation-modal-checkbox-custom {
    width: 18px;
    height: 18px;
  }
}

.consultation-modal-checkbox:checked + .consultation-modal-checkbox-custom {
  background-color: #161918;
  border-color: #161918;
}
.consultation-modal-checkbox:checked + .consultation-modal-checkbox-custom::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 6px;
  border-left: 2px solid #fefefe;
  border-bottom: 2px solid #fefefe;
  transform: translate(-50%, -60%) rotate(-45deg);
}

.consultation-modal-checkbox-text {
  flex: 1;
}

.consultation-modal-submit {
  width: 100%;
  padding: 16px 20px;
  background-color: transparent;
  border: 1px solid #161918;
  border-radius: 8px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  color: #161918;
  cursor: pointer;
  transition: all 0.3s ease;
}
.consultation-modal-submit:hover {
  background-color: #161918;
  color: #fefefe;
}
.consultation-modal-submit:active {
  transform: translateY(1px);
}
.consultation-modal-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.consultation-modal-submit:disabled:hover {
  background-color: transparent;
  color: #161918;
}
@media (max-width: 1023px) {
  .consultation-modal-submit {
    padding: 14px 16px;
    font-size: 14px;
  }
}

.error-message {
  color: #ff4444;
  font-size: 12px;
  margin-top: 4px;
  font-family: "Source Sans Pro", sans-serif;
}
@media (max-width: 1023px) {
  .error-message {
    font-size: 11px;
  }
}

.quiz-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
}
.quiz-modal.active {
  display: flex;
}

.quiz-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}

.quiz-modal-content {
  position: relative;
  background-color: #fefefe;
  border-radius: 16px;
  padding: 40px;
  max-width: 480px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1023px) {
  .quiz-modal-content {
    padding: 24px;
    width: 95%;
    max-width: 400px;
  }
}

.quiz-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  font-size: 24px;
  color: #9d9d9d;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.quiz-modal-close:hover {
  background-color: #343434;
  color: #fefefe;
}
@media (max-width: 1023px) {
  .quiz-modal-close {
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    font-size: 20px;
  }
}

.quiz-modal-header {
  margin-bottom: 32px;
  text-align: center;
}
@media (max-width: 1023px) {
  .quiz-modal-header {
    margin-bottom: 24px;
  }
}

.quiz-modal-title {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 500;
  font-size: 28px;
  line-height: 120%;
  color: #161918;
  margin: 0;
}
@media (max-width: 1023px) {
  .quiz-modal-title {
    font-size: 24px;
  }
}

.quiz-steps {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
}
@media (max-width: 1023px) {
  .quiz-steps {
    gap: 6px;
    margin-bottom: 24px;
  }
}

.quiz-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 8px;
  border: 1px solid #161918;
  border-radius: 8px;
  background-color: #fefefe;
  transition: all 0.3s ease;
}
.quiz-step.active {
  background-color: #161918;
  color: #fefefe;
}
@media (max-width: 1023px) {
  .quiz-step {
    padding: 10px 6px;
  }
}

.quiz-step-number {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 100%;
}
@media (max-width: 1023px) {
  .quiz-step-number {
    font-size: 16px;
  }
}

.quiz-step-text {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  margin-top: 4px;
}
@media (max-width: 1023px) {
  .quiz-step-text {
    font-size: 11px;
  }
}

.quiz-step-content {
  margin-bottom: 24px;
}
@media (max-width: 1023px) {
  .quiz-step-content {
    margin-bottom: 20px;
  }
}

.quiz-question {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 120%;
  color: #161918;
  margin: 0 0 24px 0;
  text-align: center;
}
@media (max-width: 1023px) {
  .quiz-question {
    font-size: 18px;
    margin-bottom: 20px;
  }
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
@media (max-width: 1023px) {
  .quiz-options {
    gap: 10px;
    margin-bottom: 24px;
  }
}

.quiz-option {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  border: 1px solid #343434;
  border-radius: 8px;
  background-color: #fefefe;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}
.quiz-option:hover {
  border-color: #161918;
}
.quiz-option.selected {
  border-color: #161918;
  background-color: #f8f8f8;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.quiz-option.selected .quiz-option-text {
  color: #161918;
  font-weight: 600;
}
.quiz-option.selected::before {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: #161918;
  border-radius: 50%;
}
@media (max-width: 1023px) {
  .quiz-option {
    padding: 14px 16px;
  }
  .quiz-option.selected::before {
    right: 12px;
    width: 6px;
    height: 6px;
  }
}

.quiz-radio {
  display: none;
}

.quiz-option-text {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #161918;
  margin-left: 12px;
}
@media (max-width: 1023px) {
  .quiz-option-text {
    font-size: 14px;
    margin-left: 10px;
  }
}

.quiz-contact-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}
@media (max-width: 1023px) {
  .quiz-contact-options {
    gap: 12px;
    margin-bottom: 20px;
  }
}

.quiz-contact-option {
  display: flex;
  flex-direction: column;
  padding: 16px 20px;
  border: 1px solid #343434;
  border-radius: 8px;
  background-color: #fefefe;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}
.quiz-contact-option:hover {
  border-color: #161918;
}
.quiz-contact-option.selected {
  border-color: #161918;
  background-color: #f8f8f8;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.quiz-contact-option.selected .quiz-contact-text {
  color: #161918;
  font-weight: 600;
}
.quiz-contact-option.selected .quiz-contact-line {
  background-color: #161918;
}
.quiz-contact-option.selected::before {
  content: "";
  position: absolute;
  right: 16px;
  top: 16px;
  width: 8px;
  height: 8px;
  background-color: #161918;
  border-radius: 50%;
}
@media (max-width: 1023px) {
  .quiz-contact-option {
    padding: 14px 16px;
  }
  .quiz-contact-option.selected::before {
    right: 12px;
    top: 12px;
    width: 6px;
    height: 6px;
  }
}

.quiz-contact-text {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #161918;
  margin-bottom: 8px;
}
@media (max-width: 1023px) {
  .quiz-contact-text {
    font-size: 14px;
  }
}

.quiz-contact-line {
  height: 1px;
  background-color: #343434;
  width: 100%;
}

.quiz-phone-input {
  margin-bottom: 24px;
}
@media (max-width: 1023px) {
  .quiz-phone-input {
    margin-bottom: 20px;
  }
}
.quiz-name-field {
  margin-bottom: 24px;
}
@media (max-width: 1023px) {
  .quiz-name-field {
    margin-bottom: 20px;
  }
}
.quiz-name-field,
.quiz-phone-field {
  width: 100%;
  padding: 16px 20px;
  background-color: #fefefe;
  border: 1px solid #343434;
  border-radius: 8px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #161918;
  transition: all 0.3s ease;
}
.quiz-name-field::-moz-placeholder {
  color: #9d9d9d;
}
.quiz-name-field::placeholder {
  color: #9d9d9d;
}
.quiz-name-field:focus {
  outline: none;
  border-color: #161918;
}
.quiz-phone-field::-moz-placeholder {
  color: #9d9d9d;
}
.quiz-phone-field::placeholder {
  color: #9d9d9d;
}
.quiz-phone-field:focus {
  outline: none;
  border-color: #161918;
}
.quiz-phone-field.error {
  border-color: #ff4444;
  background-color: #fff5f5;
}
@media (max-width: 1023px) {
  .quiz-phone-field {
    padding: 14px 16px;
    font-size: 14px;
  }
}

.quiz-navigation {
  display: flex;
  gap: 12px;
  justify-content: space-between;
}
@media (max-width: 1023px) {
  .quiz-navigation {
    gap: 10px;
  }
}

.quiz-prev-btn {
  padding: 16px 24px;
  background-color: transparent;
  border: 1px solid #343434;
  border-radius: 8px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  color: #9d9d9d;
  cursor: pointer;
  transition: all 0.3s ease;
}
.quiz-prev-btn:hover {
  border-color: #161918;
  color: #161918;
}
@media (max-width: 1023px) {
  .quiz-prev-btn {
    padding: 14px 20px;
    font-size: 14px;
  }
}

.quiz-next-btn,
.quiz-submit-btn {
  padding: 16px 24px;
  background-color: #161918;
  border: 1px solid #161918;
  border-radius: 8px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  color: #fefefe;
  cursor: pointer;
  transition: all 0.3s ease;
}
.quiz-next-btn:hover,
.quiz-submit-btn:hover {
  background-color: transparent;
  color: #161918;
}
.quiz-next-btn:disabled,
.quiz-submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.quiz-next-btn:disabled:hover,
.quiz-submit-btn:disabled:hover {
  background-color: #161918;
  color: #fefefe;
}
@media (max-width: 1023px) {
  .quiz-next-btn,
  .quiz-submit-btn {
    padding: 14px 20px;
    font-size: 14px;
  }
}

/* Сообщения квиза */
.quiz-message {
  padding: 15px 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  transition: opacity 0.3s ease;
}

.quiz-message-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.quiz-message-error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.quiz-message-info {
  background-color: #d1ecf1;
  color: #0c5460;
  border: 1px solid #bee5eb;
}

/* ========== УЛУЧШЕНИЯ КВИЗА ========== */

/* Прогресс-бар */
.quiz-progress-bar {
  width: 100%;
  height: 4px;
  background-color: #f0f0f0;
  border-radius: 4px;
  margin-bottom: 24px;
  overflow: hidden;
}

.quiz-progress-fill {
  height: 100%;
  background-color: #161918;
  width: 33.333%;
  transition: width 0.4s ease;
}

@media (max-width: 1023px) {
  .quiz-progress-bar {
    margin-bottom: 20px;
  }
}

/* Подсказки для пользователя */
.quiz-hint {
  background-color: #f5f5f5;
  border-left: 4px solid #161918;
  padding: 14px 16px;
  border-radius: 4px;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #666666;
  margin-bottom: 20px;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.quiz-hint-info {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: #999999;
  font-style: italic;
}

@media (max-width: 1023px) {
  .quiz-hint {
    font-size: 13px;
    padding: 12px 14px;
    margin-bottom: 16px;
  }
}

/* Рекомендации и динамический контент */
.quiz-recommendations {
  background-color: #f9f9f9;
  border: 1px solid #e8e8e8;
  padding: 18px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  animation: slideDown 0.3s ease;
}

.quiz-recommendations h5 {
  margin: 0 0 12px 0;
  color: #161918;
  font-size: 16px;
}

.recommendation-item {
  padding: 8px 0;
  padding-left: 24px;
  color: #666666;
  font-size: 14px;
  line-height: 1.6;
  position: relative;
}

.recommendation-item::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #161918;
  font-weight: bold;
}

/* Компактнее собираем финальный шаг: здесь уже не выбор, а завершение. */
.quiz-step-final .quiz-hint {
  margin-bottom: 12px;
  padding: 10px 14px;
}

.quiz-step-final .quiz-recommendations {
  margin-bottom: 14px;
  padding: 14px 16px;
}

.quiz-step-final .quiz-recommendations h5 {
  margin-bottom: 8px;
}

.quiz-step-final .recommendation-item {
  padding-top: 3px;
  padding-bottom: 3px;
}

.quiz-step-final .quiz-question {
  margin-bottom: 14px;
}

.quiz-step-final .quiz-contact-options {
  gap: 10px;
  margin-bottom: 14px;
}

.quiz-step-final .quiz-contact-method {
  margin-bottom: 14px;
}

.quiz-step-final .quiz-name-field,
.quiz-step-final .quiz-phone-input,
.quiz-step-final .quiz-telegram-input {
  margin-bottom: 12px;
}

.quiz-step-final .agreement {
  margin-bottom: 14px;
}

@media (max-width: 1023px) {
  .quiz-recommendations {
    padding: 14px 16px;
    margin-bottom: 16px;
  }

  .quiz-recommendations h5 {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .recommendation-item {
    font-size: 13px;
    padding-left: 20px;
  }
}

/* Хлебные крошки */
.breadcrumbs {
  padding: 20px 0;
  background-color: #fefefe;
  border-bottom: 1px solid #e5e5e5;
}

.breadcrumbs-nav {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.breadcrumbs-list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  list-style: none;
  gap: 10px;
}

.breadcrumbs-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 16px;
  color: #9d9d9d;
}

.breadcrumbs-item:not(:last-child)::after {
  content: "/";
  margin-left: 10px;
  color: #9d9d9d;
}

.breadcrumbs-link {
  color: #161918;
  text-decoration: none;
  transition: color 0.3s ease;
}
.breadcrumbs-link:hover {
  color: #343434;
}

.breadcrumbs-current {
  color: #9d9d9d;
}

/* Герой секция */
.about-hero {
  padding: 80px 0;
  background: linear-gradient(135deg, #fefefe 0%, #f8f8f8 100%);
}

.about-hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
  align-items: center;
}

.about-hero-text {
  flex: 1;
  max-width: 600px;
}

.about-hero-title {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 500;
  font-size: 64px;
  line-height: 83%;
  color: #161918;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.about-hero-subtitle {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 140%;
  color: #161918;
}

.about-hero-image {
  flex: 1;
  max-width: 600px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.about-hero-image img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Миссия и ценности */
.mission-values {
  padding: 100px 0;
  background-color: #fefefe;
}

.mission-values-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
  align-items: flex-start;
}

.mission-block {
  flex: 1;
  max-width: 500px;
}

.mission-title {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 500;
  font-size: 48px;
  line-height: 83%;
  color: #161918;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.mission-text {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 150%;
  color: #161918;
}

.values-block {
  flex: 1;
  max-width: 600px;
}

.values-title {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 500;
  font-size: 48px;
  line-height: 83%;
  color: #161918;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.values-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.value-item {
  text-align: center;
  padding: 30px 20px;
  background-color: #f8f8f8;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.value-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.value-title {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 120%;
  color: #161918;
  margin-bottom: 15px;
}

.value-text {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #161918;
}

/* История компании */
.company-history {
  padding: 100px 0;
  background-color: #f8f8f8;
}

.section-title {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 500;
  font-size: 64px;
  line-height: 83%;
  color: #161918;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 80px;
}

.history-timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.history-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #161918;
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
  position: relative;
}
.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
}
.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-year {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 100%;
  color: #161918;
  background-color: #fefefe;
  padding: 15px 25px;
  border: 2px solid #161918;
  border-radius: 8px;
  position: relative;
  z-index: 2;
}

.timeline-content {
  flex: 1;
  max-width: 300px;
  padding: 30px;
  background-color: #fefefe;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.timeline-title {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 120%;
  color: #161918;
  margin-bottom: 15px;
}

.timeline-text {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #161918;
}

/* Команда специалистов */
.team-section {
  padding: 100px 0;
  background-color: #fefefe;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.team-member {
  text-align: center;
  padding: 40px 30px;
  background-color: #f8f8f8;
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.member-photo {
  width: 150px;
  height: 150px;
  margin: 0 auto 30px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #fefefe;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.member-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.member-name {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 120%;
  color: #161918;
  margin-bottom: 10px;
}

.member-position {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 120%;
  color: #343434;
  margin-bottom: 20px;
}

.member-description {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #161918;
}

/* Достижения и статистика */
.achievements {
  padding: 100px 0;
  background-color: #161918;
  color: #fefefe;
}

.achievements .section-title {
  color: #fefefe;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.achievement-item {
  text-align: center;
  padding: 40px 20px;
}

.achievement-number {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 700;
  font-size: 64px;
  line-height: 100%;
  color: #fefefe;
  margin-bottom: 15px;
}

.achievement-label {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: #fefefe;
}

/* Лицензии и сертификаты */
.certificates {
  padding: 100px 0;
  background-color: #fefefe;
}

.certificates-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
  align-items: flex-start;
}

.certificates-text {
  flex: 1;
  max-width: 500px;
}

.certificates-text p {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 150%;
  color: #161918;
  margin-bottom: 30px;
}

.certificates-list {
  list-style: none;
  padding: 0;
}

.certificates-list li {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: #161918;
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
}
.certificates-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #161918;
  font-weight: bold;
}

.certificates-images {
  flex: 1;
  max-width: 500px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.certificate-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.certificate-item img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Призыв к действию */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #161918 0%, #2a2a2a 100%);
  color: #fefefe;
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 500;
  font-size: 48px;
  line-height: 83%;
  color: #fefefe;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.cta-text {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 140%;
  color: #fefefe;
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  min-width: 250px;
  padding: 16px 32px;
  font-size: 20px;
  border: 2px solid #fefefe;
  background-color: transparent;
  color: #fefefe;
  transition: all 0.3s ease;
}
.cta-buttons .btn:hover {
  background-color: #fefefe;
  color: #161918;
  transform: translateY(-2px);
}
.cta-buttons .btn.btn--secondary {
  background-color: #fefefe;
  color: #161918;
}
.cta-buttons .btn.btn--secondary:hover {
  background-color: transparent;
  color: #fefefe;
}

/* Мобильная адаптация */
@media (max-width: 1023px) {
  .breadcrumbs {
    padding: 15px 0;
  }
  .breadcrumbs-list {
    gap: 5px;
  }
  .breadcrumbs-item {
    font-size: 14px;
  }
  .about-hero {
    padding: 60px 0;
  }
  .about-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .about-hero-title {
    font-size: 32px;
    line-height: 100%;
    text-align: center;
  }
  .about-hero-subtitle {
    font-size: 18px;
    text-align: center;
  }
  .mission-values {
    padding: 60px 0;
  }
  .mission-values-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .mission-title,
  .values-title {
    font-size: 32px;
    line-height: 100%;
    text-align: center;
  }
  .mission-text {
    font-size: 18px;
    text-align: center;
  }
  .values-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .value-item {
    padding: 20px 15px;
  }
  .value-title {
    font-size: 20px;
  }
  .value-text {
    font-size: 14px;
  }
  .company-history {
    padding: 60px 0;
  }
  .section-title {
    font-size: 32px;
    line-height: 100%;
    margin-bottom: 40px;
  }
  .history-timeline::before {
    left: 20px;
  }
  .timeline-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-bottom: 40px;
    padding-left: 50px;
  }
  .timeline-item:nth-child(odd) {
    flex-direction: column;
  }
  .timeline-year {
    font-size: 24px;
    padding: 10px 15px;
    margin-bottom: 20px;
    align-self: flex-start;
  }
  .timeline-content {
    max-width: 100%;
    padding: 20px;
  }
  .timeline-title {
    font-size: 20px;
  }
  .timeline-text {
    font-size: 14px;
  }
  .team-section {
    padding: 60px 0;
  }
  .team-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
  }
  .team-member {
    padding: 30px 20px;
  }
  .member-photo {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
  }
  .member-name {
    font-size: 20px;
  }
  .member-position {
    font-size: 16px;
  }
  .member-description {
    font-size: 14px;
  }
  .achievements {
    padding: 60px 0;
  }
  .achievements-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
  }
  .achievement-number {
    font-size: 48px;
  }
  .achievement-label {
    font-size: 16px;
  }
  .certificates {
    padding: 60px 0;
  }
  .certificates-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .certificates-text p {
    font-size: 18px;
    text-align: center;
  }
  .certificates-list li {
    font-size: 16px;
    text-align: left;
  }
  .certificates-images {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .cta-section {
    padding: 60px 0;
  }
  .cta-title {
    font-size: 32px;
    line-height: 100%;
  }
  .cta-text {
    font-size: 18px;
  }
  .cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  .cta-buttons .btn {
    width: 100%;
    min-width: auto;
    font-size: 18px;
    padding: 14px 24px;
  }
}
/* Планшетная адаптация */
@media (min-width: 1024px) and (max-width: 1279px) {
  .about-hero-title {
    font-size: 48px;
  }
  .about-hero-subtitle {
    font-size: 20px;
  }
  .mission-title,
  .values-title {
    font-size: 40px;
  }
  .values-list {
    grid-template-columns: 1fr;
  }
  .section-title {
    font-size: 48px;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .achievements-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .certificates-content {
    gap: 60px;
  }
  .cta-title {
    font-size: 40px;
  }
}
.contacts-hero {
  background: linear-gradient(135deg, #161918 0%, #343434 100%);
  color: #fefefe;
  padding: 120px 0 80px;
  text-align: center;
}
.contacts-hero .contacts-hero-title {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 500;
  font-size: 64px;
  line-height: 83%;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.contacts-hero .contacts-hero-subtitle {
  font-size: 24px;
  line-height: 1.4;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.contacts-main {
  padding: 100px 0;
}
.contacts-main .contacts-main-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contacts-info-block h2 {
  margin-bottom: 40px;
}

.contacts-info-grid {
  display: grid;
  gap: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 30px;
  background: #f2f2f2;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.contact-item .contact-icon {
  width: 50px;
  height: 50px;
  background: #161918;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fefefe;
  flex-shrink: 0;
}
.contact-item .contact-content h3 {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 8px;
  color: #161918;
}
.contact-item .contact-content p {
  font-size: 18px;
  line-height: 1.5;
  color: #343434;
  margin: 0;
}
.contact-item .contact-content .contact-link {
  font-size: 18px;
  line-height: 1.5;
  color: #161918;
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact-item .contact-content .contact-link:hover {
  color: #343434;
}

.contacts-map-block h2 {
  margin-bottom: 40px;
}

.map-container {
  margin-bottom: 30px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.map-container #yandex-map {
  width: 100%;
  height: 400px;
}

.map-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.map-info .map-info-item h4 {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 10px;
  color: #161918;
}
.map-info .map-info-item p {
  font-size: 16px;
  line-height: 1.5;
  color: #343434;
  margin: 0;
}

.contacts-social h2 {
  text-align: center;
  margin-bottom: 60px;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.social-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px;
  background: #fefefe;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.social-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.social-item .social-icon {
  width: 60px;
  height: 60px;
  background: #161918;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.social-item .social-icon img {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
}
.social-item .social-content h3 {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 8px;
  color: #161918;
}
.social-item .social-content p {
  font-size: 16px;
  line-height: 1.5;
  color: #343434;
  margin: 0;
}

.contacts-form {
  padding: 100px 0;
}
.contacts-form .form-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.form-info h2 {
  margin-bottom: 20px;
}
.form-info p {
  font-size: 18px;
  line-height: 1.6;
  color: #343434;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.contact-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-form .form-group label {
  font-weight: 500;
  font-size: 16px;
  color: #161918;
}
.contact-form .form-group input,
.contact-form .form-group textarea {
  padding: 16px;
  border: 2px solid #f2f2f2;
  border-radius: 4px;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #161918;
  background: #fefefe;
  transition: border-color 0.3s ease;
}
.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
  outline: none;
  border-color: #161918;
}
.contact-form .form-group input::-moz-placeholder, .contact-form .form-group textarea::-moz-placeholder {
  color: #9d9d9d;
}
.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder {
  color: #9d9d9d;
}
.contact-form .form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-form .btn {
  margin-top: 20px;
  width: 100%;
  max-width: none;
}

@media (max-width: 1023px) {
  .contacts-hero {
    padding: 80px 0 60px;
  }
  .contacts-hero .contacts-hero-title {
    font-size: 32px;
    line-height: 100%;
  }
  .contacts-hero .contacts-hero-subtitle {
    font-size: 18px;
  }
  .contacts-main {
    padding: 60px 0;
  }
  .contacts-main .contacts-main-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .contact-item {
    padding: 20px;
    gap: 15px;
  }
  .contact-item .contact-icon {
    width: 40px;
    height: 40px;
  }
  .contact-item .contact-content h3 {
    font-size: 18px;
  }
  .contact-item .contact-content p, .contact-item .contact-content .contact-link {
    font-size: 16px;
  }
  .map-container #yandex-map {
    height: 300px;
  }
  .map-info {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .contacts-social .social-grid {
    grid-template-columns: 1fr;
  }
  .contacts-form {
    padding: 60px 0;
  }
  .contacts-form .form-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contacts-form .form-row {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .contacts-main .contacts-main-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .contacts-form .form-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 22px;
  line-height: 1.5;
  color: #161918;
  background-color: #fefefe;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 15px;
}

.main {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

h2 {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 500;
  font-size: 64px;
  line-height: 83%;
  color: #161918;
  text-transform: uppercase;
  padding-bottom: 60px;
}

.logo {
  width: 100px;
  height: 100px;
}
.logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* .btn {
  border: 1px solid #161918;
  border-radius: 8px;
  padding: 16px;
  width: 40%;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 110%;
  text-align: center;
  color: #161918;
  cursor: pointer;
  background-color: #fefefe;
}
.btn:hover {
  background: #e5e5e5;
  color: #161918;
  transform: translateY(-2px);
} */
.btn--secondary {
  border: 1px solid #161918;
  border-radius: 8px;
  padding: 16px;
  width: 40%;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 110%;
  text-align: center;
  color: #161918;
  cursor: pointer;
  background-color: #fefefe;
}
.btn--secondary:hover {
  background: #e5e5e5;
  color: #161918;
  transform: translateY(-2px);
}
.btn--success {
  border: 1px solid #161918;
  border-radius: 8px;
  padding: 16px;
  width: 40%;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 110%;
  text-align: center;
  color: #161918;
  cursor: pointer;
  background-color: #fefefe;
}
.btn--success:hover {
  background: #e5e5e5;
  color: #161918;
  transform: translateY(-2px);
}

.btn-white {
  border: 1px solid #fefefe;
  border-radius: 8px;
  padding: 16px;
  font-family: "Source Sans Pro", sans-serif;
  background-color: transparent;
  font-weight: 400;
  font-size: 24px;
  line-height: 110%;
  text-align: center;
  color: #fefefe;
  cursor: pointer;
}
.btn-white:hover {
  background: #e5e5e5;
  color: #161918;
  transform: translateY(-2px);
}

.btn-hero {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 110%;
  text-align: center;
  color: #fefefe;
  border: 1px solid #fefefe;
  border-radius: 8px;
  padding: 16px;
  background-color: black;
  cursor: pointer;
}
.btn-hero:hover {
  background: #e5e5e5;
  color: #161918;
  transform: translateY(-2px);
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

@media (max-width: 1023px) {
  .hero h1, .hero .hero-content-main-title {
    font-size: 2rem;
  }
  h2 {
    font-weight: 400;
    font-size: 32px;
    line-height: 100%;
    padding-bottom: 0;
  }
  .container {
    padding: 0 10px;
  }
  .btn {
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */
.item-tags {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 767px) {
.item-tags {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.item-tag {
font-weight: 400;
font-size: 15px;
line-height: 100%;
color: #fefefe;
  }
}

/* Мультикнопка «ЗАПИСЬ»: кнопка всегда на месте, иконки выезжают вверх; при открытии — крестик */
@keyframes feedback-fab-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes feedback-fab-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); }
  50% { box-shadow: 0 4px 26px rgba(0, 0, 0, 0.26), 0 0 0 8px rgba(0, 0, 0, 0.04); }
}
.feedback-fab-wrap {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 9998;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 0;
}
.feedback-fab {
  width: 90px;
  height: 90px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  border: none;
  cursor: pointer;
  background: var(--accent-color, #363636);
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.2s ease;
  animation: feedback-fab-float 3s ease-in-out infinite, feedback-fab-pulse 2.5s ease-in-out infinite;
  font: inherit;
  position: relative;
}
.feedback-fab-wrap.is-open .feedback-fab {
  animation: none;
}
.feedback-fab:hover {
  color: #fff;
  background-color: #2c2c2c;
  box-shadow: 0 6px 26px rgba(0, 0, 0, 0.28);
  transform: translateY(-4px) scale(1.06);
  animation: none;
}
.feedback-fab:focus {
  outline: 2px solid var(--accent-color, #363636);
  outline-offset: 2px;
}
.feedback-fab-text {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-align: center;
  max-width: 90%;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.feedback-fab-close {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: rotate(-90deg);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}
.feedback-fab-close svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}
.feedback-fab-wrap.is-open .feedback-fab-text {
  opacity: 0;
  visibility: hidden;
  transform: scale(0.8);
  pointer-events: none;
}
.feedback-fab-wrap.is-open .feedback-fab-close {
  opacity: 1;
  visibility: visible;
  transform: rotate(0deg);
  pointer-events: none;
}
/* Меню выезжает из кнопки вверх */
.feedback-fab-menu {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 12px;
  padding-bottom: 14px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(10px);
  transition: max-height 0.35s ease, opacity 0.3s ease, transform 0.3s ease, padding 0.3s ease;
  pointer-events: none;
}
.feedback-fab-wrap.is-open .feedback-fab-menu {
  max-height: 220px;
  opacity: 1;
  transform: translateY(0);
  padding-bottom: 14px;
  pointer-events: auto;
}
.feedback-fab-menu-item {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #333;
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.2s ease, opacity 0.2s ease;
  transition-delay: 0s;
  text-decoration: none;
  opacity: 0;
  transform: translateY(8px) scale(0.8);
}
.feedback-fab-wrap.is-open .feedback-fab-menu-item {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.feedback-fab-wrap.is-open .feedback-fab-menu-item:nth-last-child(1) { transition-delay: 0.05s; }
.feedback-fab-wrap.is-open .feedback-fab-menu-item:nth-last-child(2) { transition-delay: 0.1s; }
.feedback-fab-wrap.is-open .feedback-fab-menu-item:nth-last-child(3) { transition-delay: 0.15s; }
.feedback-fab-wrap.is-open .feedback-fab-menu-item:nth-last-child(4) { transition-delay: 0.2s; }
.feedback-fab-menu-item:hover {
  transform: scale(1.12);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  color: #333;
  background: #f5f5f5;
}
.feedback-fab-wrap.is-open .feedback-fab-menu-item:hover {
  transform: scale(1.12);
}
.feedback-fab-menu-item img,
.feedback-fab-menu-item svg {
  width: 24px;
  height: 24px;
  display: block;
}
.feedback-fab-menu-item-form svg {
  stroke: currentColor;
}
@media (max-width: 767px) {
  .feedback-fab-wrap {
    left: 16px;
    bottom: 16px;
  }
  .feedback-fab {
    width: 75px;
    height: 75px;
  }
  .feedback-fab-text {
    font-size: 12px;
  }
  .feedback-fab-menu {
    padding-bottom: 12px;
  }
  .feedback-fab-wrap.is-open .feedback-fab-menu {
    max-height: 200px;
  }
  .feedback-fab-menu-item {
    width: 44px;
    height: 44px;
  }
  .feedback-fab-menu-item img,
  .feedback-fab-menu-item svg {
    width: 22px;
    height: 22px;
  }
}

@keyframes up-btn-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
#up {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9998;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: rgba(0, 0, 0, 0.08);
  color: #333;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 50%;
  box-shadow: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}
#up.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  animation: up-btn-float 3s ease-in-out infinite;
}
#up.active:hover {
  animation: none;
  background: rgba(0, 0, 0, 0.14);
  color: #000;
  transform: translateY(-2px);
}
#up svg {
  height: 18px;
  width: auto;
}
@media (max-width: 767px) {
  #up {
    right: 16px;
    bottom: 16px;
    width: 40px;
    height: 40px;
  }
  #up svg {
    height: 16px;
  }
}

/* Блок выбора способа связи в форме заявки */
.form-group-contact-method {
  margin-bottom: 10px;
}
.form-group-contact-method .form-label {
  display: block;
  margin-bottom: 12px;
  font-weight: 500;
  font-size: 15px;
  color: #161918;
}
.contact-method-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.contact-method-option {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 15px;
  color: #727376;
  padding: 5px 10px;
  border: 1px solid #D9D9D9;
  background: #fff;
  border-radius: 10px;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  min-height: 30px;
  box-sizing: border-box;
}
.contact-method-option:hover {
  border-color: #b3b3b3;
  color: #161918;
}
.contact-method-option input.contact-method-radio {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
/* Кастомный кружок радиокнопки */
.contact-method-option::before {
  content: "";
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border: 2px solid #D9D9D9;
  border-radius: 50%;
  background: #fff;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-method-option:hover::before {
  border-color: #b3b3b3;
}
/* Выбранное состояние — в стиле сайта (акцент) */
.contact-method-option:has(input.contact-method-radio:checked) {
  border-color: var(--accent-color, #343434);
  background-color: rgba(52, 52, 52, 0.06);
  color: #161918;
}
.contact-method-option:has(input.contact-method-radio:checked)::before {
  border-color: var(--accent-color, #343434);
  background-color: var(--accent-color, #343434);
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--accent-color, #343434);
}
