.mega-services {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 22px;
  min-width: 0;
}
@media (max-width: 991.98px) {
  .mega-services {
    display: block;
  }
}
.mega-services__left {
  min-width: 0;
  border-right: 1px solid var(--gray-200);
  padding-right: 20px;
}
@media (max-width: 991.98px) {
  .mega-services__left {
    border-right: 0;
    padding-right: 0;
  }
}
.mega-services__parent-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
@media (max-width: 991.98px) {
  .mega-services__parent-list {
    gap: 10px;
  }
}
.mega-services__parent-item {
  display: block;
}
@media (max-width: 767.98px) {
  .mega-services__parent-item {
    box-shadow: 0 4px 12px rgba(61, 55, 109, 0.1);
    background: var(--white);
    border-radius: 12px;
  }
}
@media (max-width: 767.98px) {
  .mega-services__parent-item.is-open .mega-services__parent-link {
    color: var(--blue-500);
  }
}
.mega-services__parent-link {
  position: relative;
  display: block;
  padding: 10px 12px 10px 26px;
  border-radius: 6px;
  color: var(--text-primary);
  font-size: 1.7rem;
  line-height: 1.35;
  text-decoration: none;
}
.mega-services__parent-link::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-500);
  transform: translateY(-50%);
}
@media (min-width: 992px) {
  .mega-services__parent-link.is-active {
    background: var(--blue-50);
    color: var(--text-primary);
  }
  .mega-services__parent-link.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 4px;
    border-radius: 0 4px 4px 0;
    background: var(--blue-500);
  }
}
@media (max-width: 767.98px) {
  .mega-services__parent-link {
    padding: 14px 28px 14px 26px;
    font-weight: 500;
    font-size: 2rem;
    color: var(--title);
  }
  .mega-services__parent-link::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    width: 9px;
    height: 9px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-65%) rotate(45deg);
    transition: transform 0.25s ease;
  }
  .mega-services__parent-link.is-active {
    background: transparent;
  }
  .mega-services__parent-link.is-active::after {
    transform: translateY(-35%) rotate(225deg);
  }
}
.mega-services__accordion {
  display: none;
}
.mega-services__accordion[hidden] {
  display: none !important;
}
@media (max-width: 991.98px) {
  .mega-services__accordion {
    display: block;
    padding: 0 0 4px 12px;
  }
}
.mega-services__loader {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 0 12px;
}
.mega-services__loader[hidden] {
  display: none !important;
}
.mega-services__loader-icon {
  width: 24px;
  height: 24px;
  animation: mega-services-loader-spin 0.9s linear infinite;
}
.mega-services__all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--blue-500);
  font-size: 1.8rem;
  line-height: 1.25;
  text-decoration: none;
  font-weight: 500;
}
.mega-services__all svg {
  fill: var(--blue-500) !important;
}
.mega-services__all:hover {
  color: var(--blue-400);
}
.mega-services__all:hover svg {
  fill: var(--blue-400) !important;
}
@media (max-width: 991.98px) {
  .mega-services__all {
    display: none;
  }
}
.mega-services__right {
  min-width: 0;
}
@media (max-width: 991.98px) {
  .mega-services__right {
    display: none;
  }
}
.mega-services__panel {
  display: none;
}
.mega-services__panel.is-active {
  display: block;
}
.mega-services__title {
  margin: 0;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gray-200);
  color: var(--text-primary);
  font-size: 2.2rem;
  line-height: 1.2;
  font-weight: 700;
}
.mega-services__child-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
@media (max-width: 991.98px) {
  .mega-services__child-list {
    gap: 0;
    padding-top: 4px;
  }
}
.mega-services__child-link {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 8px 0;
  text-decoration: none;
  color: var(--text-primary);
}
.mega-services__child-link:hover .mega-services__child-text {
  color: var(--red-500);
}
.mega-services__child-link:hover svg {
  fill: var(--red-500);
}
@media (max-width: 991.98px) {
  .mega-services__child-link {
    padding: 10px 12px 10px 0;
  }
}
.mega-services__child-text {
  font-size: 1.9rem;
  line-height: 1.35;
  color: inherit;
}
.mega-services__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: var(--blue-500);
  font-size: 1.9rem;
  line-height: 1.25;
  text-decoration: none;
  font-weight: 500;
}
.mega-services__more:hover {
  color: var(--blue-400);
}
.mega-services__more:hover svg {
  fill: var(--blue-400);
}
@media (max-width: 991.98px) {
  .mega-services__more {
    margin-top: 8px;
    margin-bottom: 16px;
    font-size: 1.8rem;
  }
}
.mega-services__more-text {
  font-size: 1.9rem;
  line-height: 1.35;
  color: inherit;
}
@media (max-width: 991.98px) {
  .mega-services__more-text {
    font-size: 1.7rem;
  }
}
.mega-services__arrow svg {
  width: 24px;
  height: 24px;
  fill: var(--blue-500);
}

@keyframes mega-services-loader-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.header__menu-container {
  grid-column: 1/-1;
  border-top: 1px solid #e6edf3;
  position: relative;
}
.header__menu {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 26px;
}
.header__menu-item--mega.is-mobile-open .header__mega {
  display: block;
}
@media (max-width: 991.98px) {
  .header__mega-col--accent {
    display: none;
  }
}
.header__menu-item {
  position: relative;
}
@media (max-width: 991.98px) {
  .header__menu-item {
    width: 100%;
    border-bottom: 1px solid #edf2f7;
  }
}
.header__menu-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 500;
  color: var(--text-primary);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.3s ease;
  padding: 12px 0;
}
@media (max-width: 991.98px) {
  .header__menu-link {
    width: 100%;
    justify-content: flex-start;
    padding: 16px 12px;
    white-space: normal;
    font-size: 2rem;
  }
}
.header__menu-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  background: var(--blue-500);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s ease;
}
@media (max-width: 991.98px) {
  .header__menu-link::after {
    display: none;
  }
}
.header__menu-link:hover {
  color: var(--blue-500);
}
.header__menu-link:hover::after {
  transform: scaleX(1);
}
.header__menu-link:focus-visible {
  color: var(--blue-500);
  outline: none;
}
.header__menu-link:focus-visible::after {
  transform: scaleX(1);
}
.header__menu-link--primary {
  font-weight: 600;
  color: var(--blue-500);
}
.header__menu-link--primary svg {
  fill: var(--blue-500);
}
.header__menu-link--primary:hover {
  color: var(--blue-400);
}
.header__menu-link--primary:hover::after {
  background: var(--blue-400);
  transform: scaleX(1);
}
.header__menu-link--primary:hover svg {
  fill: var(--blue-400);
}
.header__menu-link--primary:focus-visible::after {
  background: var(--blue-400);
}
@media (max-width: 991.98px) {
  .header__menu-link--primary {
    font-weight: 500 !important;
    font-size: 2.4rem !important;
    color: var(--title) !important;
  }
}
@media (max-width: 991.98px) {
  .header__menu-item--mega > .header__menu-link {
    position: relative;
    padding-right: 28px;
  }
}
@media (max-width: 991.98px) {
  .header__menu-item--mega > .header__menu-link::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 4px;
    width: 9px;
    height: 9px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-65%) rotate(45deg);
    transition: transform 0.25s ease, color 0.25s ease;
  }
}
@media (max-width: 991.98px) {
  .header__menu-item--mega.is-mobile-open > .header__menu-link {
    color: var(--blue-500);
  }
}
@media (max-width: 991.98px) {
  .header__menu-item--mega.is-mobile-open > .header__menu-link::before {
    transform: translateY(-35%) rotate(225deg);
  }
}
.header__mega {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  width: min(1180px, 100vw - 40px);
  background: #fff;
  border: 1px solid #dfe6f0;
  border-radius: 14px;
  box-shadow: 0 20px 42px rgba(28, 38, 61, 0.12);
  padding: 18px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 50;
}
@media (max-width: 991.98px) {
  .header__mega {
    position: static;
    display: none;
    width: 100%;
    margin: 0 0 16px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }
}
.header__menu-item--mega.is-open .header__mega, .header__menu-item--mega:hover .header__mega, .header__menu-item--mega:focus-within .header__mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.header__mega-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 60px;
  align-items: start;
}
@media (max-width: 991.98px) {
  .header__mega-grid {
    display: block;
  }
}
.header__mega-col {
  min-width: 0;
}
.header__mega-card {
  border: 1px solid #dfe6f0;
  border-radius: 12px;
  background: #f6f9fd;
  padding: 16px;
}
.header__mega-card-title {
  font-size: 2.4rem;
  line-height: 1.15;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.header__mega-card p {
  margin: 0 0 12px;
  font-size: 1.8rem;
  line-height: 1.3;
  color: var(--gray-600);
}
.header__mega-card-image {
  width: 100%;
  height: 200px;
  margin-bottom: 10px;
}
.header__mega-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.header__mega-card .ui__btn {
  width: 100%;
  justify-content: center;
  font-size: 1.7rem;
  text-align: center;
}
@media (max-width: 991.98px) {
  .header__menu-container {
    display: none;
  }
  .header__menu-item--mega .header__mega {
    display: none;
  }
}
.header__menu-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: var(--blue-500);
}
.header__menu-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--blue-500);
}
.header__mobile-drawer {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #ffffff;
}
.header__mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 20px 16px;
  border-bottom: 1px solid #e6edf3;
}
.header__mobile-drawer-title {
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 600;
  color: var(--text-primary);
}
.header__mobile-drawer-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  outline: none;
}
.header__mobile-drawer-close svg {
  width: 24px;
  height: 24px;
  fill: var(--red-500);
}
.header__mobile-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 8px 20px 24px;
  background: var(--bg-page);
}
.header__mobile-drawer-menu .header__menu {
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}

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