@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

input, button, textarea, select {
  font: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  background: none;
  border: none;
}

h1, h2, h3, h4, h5, h6, p {
  overflow-wrap: break-word;
}

h1 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 64px;
  line-height: 1.1;
}

h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 1.15;
}

h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 1.2;
}

h4 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 36px;
  line-height: 1.2;
}

h5 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 30px;
  line-height: 1.25;
}

.label {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8A3FFC;
}

.body-lg {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
}

p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #000000;
  background: #F1F1FF url("../images/bg-body-dots.webp") repeat;
}

.container {
  max-width: 1270px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  display: inline-flex;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  border-radius: 100px;
  padding: 20px 48px;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
  box-shadow: -2px 4px 4px 0px rgba(255, 255, 255, 0.2) inset;
}
.btn svg {
  flex-shrink: 0;
  width: 6px;
  height: 11px;
}
.btn--primary {
  background-color: #8A3FFC;
  color: #FFFFFF;
  border: 2px solid #8A3FFC;
}
.btn--primary:hover {
  background-color: #7606AF;
  border-color: #7606AF;
}
.btn--primary:active {
  background-color: rgb(101.3756906077, 5.1546961326, 150.3453038674);
  border-color: rgb(101.3756906077, 5.1546961326, 150.3453038674);
}
.btn--secondary {
  background-color: rgba(138, 63, 252, 0.5);
  color: #FFFFFF;
  border: 2px solid transparent;
}
.btn--secondary:hover {
  background-color: #8A3FFC;
  border-color: #8A3FFC;
}
.btn--secondary:active {
  background-color: #7606AF;
  border-color: #7606AF;
}
.btn--arrow {
  padding: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #8A3FFC;
  border: 2px solid #8A3FFC;
  color: #FFFFFF;
  justify-content: center;
}
.btn--arrow svg {
  width: 20px;
  height: 20px;
}
.btn--arrow:hover {
  background-color: #7606AF;
  border-color: #7606AF;
}
.btn--arrow:active {
  background-color: rgb(101.3756906077, 5.1546961326, 150.3453038674);
  border-color: rgb(101.3756906077, 5.1546961326, 150.3453038674);
}
.btn--arrow--outline {
  background-color: transparent;
  border-color: #8A3FFC;
  color: #8A3FFC;
}
.btn--arrow--outline:hover {
  background-color: #8A3FFC;
  color: #FFFFFF;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: #1B1B28;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 40px;
}
@media (max-width: 767px) {
  .header__inner {
    gap: 20px;
  }
}
.header__logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  flex-shrink: 0;
  color: #FFFFFF;
}
.header__logo-icon {
  width: 32px;
  height: 32px;
}
.header__logo-text {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #FFFFFF;
}
.header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
@media (max-width: 1024px) {
  .header__nav {
    display: none;
  }
}
.header__nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.header__nav-item {
  position: relative;
}
.header__nav-item:hover > .header__megamenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header__nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  padding: 8px 14px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  color: #FFFFFF;
  border-radius: 8px;
  transition: color 0.2s ease;
  font-weight: 700;
}
.header__nav-link::after {
  content: "";
  display: block;
  height: 2px;
  background-color: #8A3FFC;
  position: absolute;
  bottom: -4px;
  left: 14px;
  right: 14px;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.header__nav-link:hover, .header__nav-link--active {
  color: #FFFFFF;
}
.header__nav-link:hover::after, .header__nav-link--active::after {
  opacity: 1;
}
.header__nav-link svg {
  width: 6px;
  height: 11px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.header__nav-item:hover .header__nav-link svg {
  transform: rotate(180deg);
}
.header__megamenu {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 99;
  padding: 16px 0 24px;
}
.header__megamenu-grid {
  max-width: 1270px;
  margin: 0 auto;
  padding: 24px 24px;
  background: #dccdfe;
  border-radius: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.header__megamenu-card {
  border-radius: 8px;
  padding: 24px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid #FFFFFF;
}
.header__megamenu-card:nth-child(1) .header__megamenu-card-arrow {
  background-color: #D360FF;
}
.header__megamenu-card:nth-child(1):hover {
  background-color: #D360FF;
  border-color: #D360FF;
}
.header__megamenu-card:nth-child(2) .header__megamenu-card-arrow {
  background-color: #4CB5AE;
}
.header__megamenu-card:nth-child(2):hover {
  background-color: #4CB5AE;
  border-color: #4CB5AE;
}
.header__megamenu-card:nth-child(3) .header__megamenu-card-arrow {
  background-color: #8A3FFC;
}
.header__megamenu-card:nth-child(3):hover {
  background-color: #8A3FFC;
  border-color: #8A3FFC;
}
.header__megamenu-card:nth-child(4) .header__megamenu-card-arrow {
  background-color: #60B2E5;
}
.header__megamenu-card:nth-child(4):hover {
  background-color: #60B2E5;
  border-color: #60B2E5;
}
.header__megamenu-card:nth-child(5) .header__megamenu-card-arrow {
  background-color: #8C00D2;
}
.header__megamenu-card:nth-child(5):hover {
  background-color: #8C00D2;
  border-color: #8C00D2;
}
.header__megamenu-card:nth-child(6) .header__megamenu-card-arrow {
  background-color: #C200DC;
}
.header__megamenu-card:nth-child(6):hover {
  background-color: #C200DC;
  border-color: #C200DC;
}
.header__megamenu-card:hover {
  background-color: #4CB5AE;
}
.header__megamenu-card:hover .header__megamenu-card-icon,
.header__megamenu-card:hover .header__megamenu-card-title,
.header__megamenu-card:hover .header__megamenu-card-links a,
.header__megamenu-card:hover p {
  color: #FFFFFF;
  opacity: 1;
}
.header__megamenu-card:hover .header__megamenu-card-arrow {
  background-color: #FFFFFF;
  color: #000000;
}
.header__megamenu-card:hover .header__megamenu-card-tags__item {
  color: #FFFFFF;
}
.header__megamenu-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}
.header__megamenu-card-icon {
  color: #000000;
  transition: color 0.2s ease;
}
.header__megamenu-card-icon svg {
  width: 22px;
  height: 22px;
}
.header__megamenu-card-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #FFFFFF;
  flex-shrink: 0;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.header__megamenu-card-arrow svg {
  width: 14px;
  height: 14px;
}
.header__megamenu-card-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #000000;
  margin-bottom: 8px;
  transition: color 0.2s ease;
}
.header__megamenu-card-title span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background-color: #8A3FFC;
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  margin-left: 6px;
  vertical-align: middle;
}
.header__megamenu-card p {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: #000000;
  opacity: 0.7;
  line-height: 1.5;
  transition: color 0.2s ease, opacity 0.2s ease;
}
.header__megamenu-card-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.header__megamenu-card-links a {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: #000000;
  opacity: 0.7;
  transition: color 0.2s ease, opacity 0.2s ease;
}
.header__megamenu-card-links a:hover {
  opacity: 1;
}
.header__megamenu-card-tags {
  display: flex;
  flex-wrap: wrap;
}
.header__megamenu-card-tags__item {
  width: 50%;
  text-align: left;
  font-size: 14px;
  color: #393939;
}
.header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  flex-shrink: 0;
}
.header__actions .btn {
  font-size: 14px;
  padding: 12px 24px;
}
@media (max-width: 767px) {
  .header__actions .btn {
    display: none;
  }
}
.header__lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
}
.header__lang {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: color 0.2s ease;
  text-decoration: none;
}
.header__lang--active, .header__lang:hover {
  color: #FFFFFF;
}
.header__lang--active {
  pointer-events: none;
}
.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  border: none;
  background: none;
}
@media (max-width: 1024px) {
  .header__burger {
    display: flex;
  }
}
.header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #FFFFFF;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.header__burger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header__burger.is-active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.header__burger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.header__mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #1B1B28;
  z-index: 99;
  overflow-y: auto;
  flex-direction: column;
  padding: 40px 24px 96px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}
@media (max-width: 1024px) {
  .header__mobile-menu {
    display: flex;
  }
}
.header__mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header__mobile-nav {
  flex: 1;
}
.header__mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.header__mobile-nav-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.header__mobile-nav-link {
  padding: 24px 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #FFFFFF;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__mobile-nav-link:hover {
  color: #D360FF;
}
.header__mobile-nav-item--has-sub .header__mobile-nav-link svg {
  margin-left: auto;
  transition: transform 0.3s ease;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.header__mobile-nav-item--has-sub.is-open .header__mobile-nav-link svg {
  transform: rotate(180deg);
}
.header__mobile-nav-item--has-sub.is-open .header__mobile-sub {
  display: flex;
}
.header__mobile-sub {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 0 0 24px 16px;
}
.header__mobile-sub-link {
  display: block;
  padding: 10px 0;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: color 0.2s ease;
}
.header__mobile-sub-link:hover {
  color: #FFFFFF;
}
.header__mobile-actions {
  padding-top: 40px;
}
.header__mobile-actions .btn {
  width: 100%;
  justify-content: center;
}

.header-offset {
  padding-top: 72px;
}

body.menu-open {
  overflow: hidden;
}

.footer__cta {
  padding: 40px 0;
}
@media (max-width: 767px) {
  .footer__cta {
    padding: 0;
  }
  .footer__cta .container {
    padding: 0;
  }
}
.footer__cta-inner {
  background: linear-gradient(91.8deg, #32E0C4 -3.91%, #7A70D0 13.99%, #7606AF 50.41%, #C200DC 99.19%);
  padding: 83px 45px 59px;
  position: relative;
  border-radius: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  overflow: hidden;
}
.footer__cta-inner:after {
  content: "";
  width: 246px;
  height: 275px;
  display: block;
  background: url("../images/banner-image.svg") no-repeat center;
  background-size: contain;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}
@media (max-width: 767px) {
  .footer__cta-inner {
    border-radius: 0px;
  }
}
@media (max-width: 1024px) {
  .footer__cta-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}
.footer__cta-content, .footer__cta-action {
  position: relative;
  z-index: 2;
}
.footer__cta-label {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 8px;
}
.footer__cta-heading {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 1.15;
  color: #FFFFFF;
}
@media (max-width: 1024px) {
  .footer__cta-heading {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .footer__cta-heading {
    font-size: 28px;
  }
}
.footer__cta-action {
  flex-shrink: 0;
}
.footer__cta-action .btn--primary {
  background-color: #FFFFFF;
  border-color: #FFFFFF;
  color: #8A3FFC;
}
.footer__main {
  background-color: #F1F1FF;
  padding: 40px 0 40px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.footer__logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 16px;
  width: 245px;
}
.footer__logo img {
  max-width: 100%;
}
.footer__tagline {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #000000;
  max-width: 260px;
  margin-bottom: 24px;
}
.footer__social {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}
.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: #000000;
  transition: color 0.2s ease;
}
.footer__social-link:hover {
  color: #8A3FFC;
}
.footer__social-link svg {
  width: 20px;
  height: 20px;
}
.footer__col-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #000000;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer__col-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__col-item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #000000;
  opacity: 0.8;
}
.footer__col-item svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  color: #8A3FFC;
}
.footer__col-item a {
  transition: color 0.2s ease;
}
.footer__col-item a:hover {
  color: #8A3FFC;
  opacity: 1;
}
.footer__bottom {
  border-top: 1px solid #C200DC;
  padding: 16px 0;
}
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .footer__bottom-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}
.footer__bottom-copy, .footer__bottom-link {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: #000000;
  opacity: 0.6;
}
.footer__bottom-link {
  transition: color 0.2s ease, opacity 0.2s ease;
}
.footer__bottom-link:hover {
  color: #8A3FFC;
  opacity: 1;
}

.hero-section {
  position: relative;
  overflow: hidden;
}
.hero-section__inner {
  position: relative;
  z-index: 2;
  padding: 96px 0;
}
@media (max-width: 1024px) {
  .hero-section__inner {
    padding: 40px 0;
  }
}
.hero-section__content {
  max-width: 100%;
}
@media (max-width: 1024px) {
  .hero-section__content {
    max-width: 100%;
  }
}
.hero-section__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 64px;
  line-height: 1.1;
  color: #000000;
  margin-bottom: 40px;
  text-align: center;
}
@media (max-width: 1024px) {
  .hero-section__title {
    font-size: 48px;
  }
}
@media (max-width: 768px) {
  .hero-section__title {
    font-size: 36px;
  }
}
.hero-section__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
@media (max-width: 768px) {
  .hero-section__actions {
    flex-direction: column;
  }
}
.hero-section__media {
  max-width: 100%;
  width: 1367px;
  height: 520px;
  margin-top: 50px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0px 0px 80px 0px rgba(138, 63, 252, 0.5019607843);
}
@media (max-width: 1023px) {
  .hero-section__media {
    width: 100%;
    height: auto;
  }
}
.hero-section__media img, .hero-section__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.marquee-section {
  overflow: hidden;
  padding: 40px 0;
}
.marquee-section__track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-section__track:hover {
  animation-play-state: paused;
}
.marquee-section__item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.marquee-section__img {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.6;
  transition: opacity 0.2s ease, filter 0.2s ease;
}
.marquee-section__img:hover {
  filter: grayscale(0);
  opacity: 1;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.numbers-section {
  padding: 40px 0;
}
@media (max-width: 1023px) {
  .numbers-section {
    padding: 10px 0;
  }
}
.numbers-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 768px) {
  .numbers-section__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.numbers-section__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.numbers-section__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8A3FFC;
}
.numbers-section__value {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 64px;
  line-height: 1;
  color: #000000;
}
@media (max-width: 1024px) {
  .numbers-section__value {
    font-size: 48px;
  }
}
@media (max-width: 768px) {
  .numbers-section__value {
    font-size: 40px;
  }
}

.text-image-section {
  padding: 40px 0;
}
.text-image-section__inner {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 1024px) {
  .text-image-section__inner {
    flex-direction: column-reverse;
    gap: 40px;
  }
}
.text-image-section--reversed .text-image-section__inner {
  direction: rtl;
}
.text-image-section--reversed .text-image-section__inner > * {
  direction: ltr;
}
.text-image-section__image {
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  max-width: 480px;
}
.text-image-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.text-image-section__content {
  flex: 1;
}
.text-image-section__content h1, .text-image-section__content h2, .text-image-section__content h3, .text-image-section__content h4, .text-image-section__content h5 {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #000000;
  margin-bottom: 16px;
}
.text-image-section__content p {
  font-family: "Inter", sans-serif;
  font-size: 32px;
  line-height: 1.4;
  color: #000000;
  margin-bottom: 16px;
  font-weight: 400;
}
.text-image-section__content p:last-child {
  margin-bottom: 0;
}
.text-image-section__content ul, .text-image-section__content ol {
  padding-left: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.text-image-section__content ul li, .text-image-section__content ol li {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #000000;
}
.text-image-section__content ul li {
  list-style: disc;
}
.text-image-section__content ol li {
  list-style: decimal;
}
.text-image-section__content a {
  color: #8A3FFC;
  text-decoration: underline;
  transition: opacity 0.2s ease;
}
.text-image-section__content a:hover {
  opacity: 0.75;
}

.services-section {
  background-color: #1B1B28;
  padding: 40px 0;
}
.services-section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .services-section__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}
.services-section__header-content {
  flex: 1;
}
.services-section__label {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #D360FF;
  margin-bottom: 8px;
}
.services-section__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 1.15;
  color: #FFFFFF;
  max-width: 680px;
}
@media (max-width: 1024px) {
  .services-section__title {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .services-section__title {
    font-size: 28px;
  }
}
.services-section__header-action {
  flex-shrink: 0;
}
.services-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) {
  .services-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .services-section__grid {
    grid-template-columns: 1fr;
  }
}
.services-section__card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  padding: 24px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.services-section__card:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
}
.services-section__card:hover .services-section__card-arrow {
  background-color: #FFFFFF !important;
  transform: rotate(45deg);
  color: #000000;
}
.services-section__card:nth-child(1):hover {
  background-color: rgba(211, 96, 255, 0.9);
  border-color: rgba(211, 96, 255, 0.9);
}
.services-section__card:nth-child(2):hover {
  background-color: rgba(76, 181, 174, 0.9);
  border-color: rgba(76, 181, 174, 0.9);
}
.services-section__card:nth-child(3):hover {
  background-color: rgba(138, 63, 252, 0.9);
  border-color: rgba(138, 63, 252, 0.9);
}
.services-section__card:nth-child(4):hover {
  background-color: rgba(83, 148, 190, 0.9);
  border-color: rgba(83, 148, 190, 0.9);
}
.services-section__card:nth-child(5):hover {
  background-color: rgba(118, 6, 175, 0.9);
  border-color: rgba(118, 6, 175, 0.9);
}
.services-section__card:nth-child(6):hover {
  background-color: rgba(194, 0, 220, 0.9);
  border-color: rgba(194, 0, 220, 0.9);
}
.services-section__card:nth-child(1) .services-section__card-arrow {
  background-color: rgba(140, 0, 210, 0.8);
}
.services-section__card:nth-child(2) .services-section__card-arrow {
  background-color: rgb(83, 148, 190);
}
.services-section__card:nth-child(3) .services-section__card-arrow {
  background-color: rgb(138, 63, 252);
}
.services-section__card:nth-child(4) .services-section__card-arrow {
  background-color: rgb(76, 181, 174);
}
.services-section__card:nth-child(5) .services-section__card-arrow {
  background-color: rgb(118, 6, 175);
}
.services-section__card:nth-child(6) .services-section__card-arrow {
  background-color: rgb(194, 0, 220);
}
.services-section__card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.services-section__card-icon {
  color: #FFFFFF;
}
.services-section__card-icon svg, .services-section__card-icon img {
  width: 24px;
  height: 24px;
}
.services-section__card-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #8A3FFC;
  color: #FFFFFF;
  flex-shrink: 0;
  transition: 0.2s ease;
}
.services-section__card-arrow svg {
  width: 14px;
  height: 14px;
}
.services-section__card:hover .services-section__card-arrow {
  background-color: #7606AF;
}
.services-section__card-bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.services-section__card-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 30px;
  line-height: 1.2;
  color: #FFFFFF;
}
.services-section__card-tags {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 12px;
}
.services-section__card-tag {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.5);
}
.services-section__card-text {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
}

.process-section {
  padding: 40px 0;
}
.process-section__header {
  text-align: center;
  margin-bottom: 40px;
}
.process-section__label {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8A3FFC;
  margin-bottom: 8px;
}
.process-section__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 1.15;
  color: #000000;
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .process-section__title {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .process-section__title {
    font-size: 28px;
  }
}
.process-section__actions {
  padding-top: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 65px;
}
@media (max-width: 1023px) {
  .process-section__actions {
    flex-direction: column;
    gap: 24px;
    padding-top: 0;
  }
}
.process-section .process-scheme-mobile.active .process-scheme-mobile__item {
  opacity: 1;
  visibility: visible;
}
.process-section .process-scheme-mobile {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  display: none;
}
@media (max-width: 1023px) {
  .process-section .process-scheme-mobile {
    display: flex;
  }
}
.process-section .process-scheme-mobile__item {
  width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease-in-out;
}
.process-section .process-scheme-mobile__item:nth-child(1) {
  transition-delay: 0.3s;
}
.process-section .process-scheme-mobile__item:nth-child(2) {
  transition-delay: 0.6s;
}
.process-section .process-scheme-mobile__item:nth-child(3) {
  transition-delay: 0.9s;
}
.process-section .process-scheme-mobile__item:nth-child(4) {
  transition-delay: 1.2s;
}
.process-section .process-scheme-mobile__item:nth-child(5) {
  transition-delay: 1.5s;
}
.process-section .process-scheme-mobile__item img {
  max-width: 100%;
}
@media (max-width: 1023px) {
  .process-section__scheme {
    display: none;
  }
}
.process-section__scheme.active svg .process-item,
.process-section__scheme.active svg .process-line {
  opacity: 1;
  visibility: visible;
}
.process-section__scheme svg .process-item,
.process-section__scheme svg .process-line {
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease-in-out;
}
.process-section__scheme svg .process-item:nth-child(1) {
  transition-delay: 0.3s;
}
.process-section__scheme svg .process-item:nth-child(2) {
  transition-delay: 0.8s;
}
.process-section__scheme svg .process-item:nth-child(3) {
  transition-delay: 1.3s;
}
.process-section__scheme svg .process-item:nth-child(4) {
  transition-delay: 1.9s;
}
.process-section__scheme svg .process-item:nth-child(5) {
  transition-delay: 2.5s;
}
.process-section__scheme svg .process-line:nth-child(6) {
  transition-delay: 0.5s;
}
.process-section__scheme svg .process-line:nth-child(7) {
  transition-delay: 1s;
}
.process-section__scheme svg .process-line:nth-child(8) {
  transition-delay: 1.5s;
}
.process-section__scheme svg .process-line:nth-child(9) {
  transition-delay: 2s;
}
.process-section__image {
  width: 100%;
}
.process-section__image img {
  width: 100%;
  height: auto;
  display: block;
}

.images-grid-section {
  padding: 40px 0;
}
.images-grid-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) {
  .images-grid-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .images-grid-section__grid {
    grid-template-columns: 1fr;
  }
}
.images-grid-section__item {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.images-grid-section__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.images-grid-section__item:hover img {
  transform: scale(1.03);
}

.portfolio-section {
  padding: 40px 0;
}
.portfolio-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .portfolio-section__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
.portfolio-section__header-content {
  flex: 1;
}
.portfolio-section__label {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8A3FFC;
  margin-bottom: 8px;
}
.portfolio-section__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 1.15;
}
@media (max-width: 1024px) {
  .portfolio-section__title {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .portfolio-section__title {
    font-size: 28px;
  }
}
.portfolio-section__header-action {
  flex-shrink: 0;
}
.portfolio-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  gap: 16px;
}
@media (max-width: 1024px) {
  .portfolio-section__grid {
    grid-template-columns: 1fr;
  }
}
.portfolio-section__col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.portfolio-section__col--large .portfolio-section__card {
  height: 100%;
}
.portfolio-section__card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
}
.portfolio-section__card--large {
  min-height: 936px;
}
@media (max-width: 1024px) {
  .portfolio-section__card--large {
    min-height: 520px;
  }
}
.portfolio-section__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27, 27, 40, 0.85) 0%, rgba(27, 27, 40, 0.2) 50%, transparent 100%);
  z-index: 1;
}
.portfolio-section__card:hover .portfolio-section__card-bg {
  transform: scale(1.03);
}
.portfolio-section__card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.portfolio-section__card-body {
  position: relative;
  z-index: 2;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.portfolio-section__card-tags {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  flex-wrap: wrap;
}
.portfolio-section__card-tag {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  color: #FFFFFF;
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  padding: 4px 10px;
  backdrop-filter: blur(4px);
}
.portfolio-section__card-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}
.portfolio-section__card-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: #FFFFFF;
  line-height: 1.2;
}
.portfolio-section__card-metric {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #FFFFFF;
  white-space: nowrap;
  flex-shrink: 0;
}
.portfolio-section__card-desc {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}

.reviews-section {
  padding: 40px 0;
  overflow: hidden;
}
.reviews-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .reviews-section__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
.reviews-section__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 1.15;
  color: #000000;
}
@media (max-width: 1024px) {
  .reviews-section__title {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .reviews-section__title {
    font-size: 28px;
  }
}
.reviews-section__controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-shrink: 0;
}
.reviews-section__track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .reviews-section__track {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .reviews-section__track {
    grid-template-columns: 1fr;
  }
}
.reviews-section__card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  padding: 40px 24px;
  border-radius: 32px;
  background: #FFFFFF;
}
.reviews-section__card-text {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #000000;
}
.reviews-section__card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.reviews-section__card-author {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}
.reviews-section__card-photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.reviews-section__card-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.reviews-section__card-name {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #000000;
}
.reviews-section__card-role {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.55);
}
.reviews-section__card-icon {
  height: 28px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.partners-section {
  padding: 40px 0;
}
.partners-section__inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 1024px) {
  .partners-section__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.partners-section__image {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1024px) {
  .partners-section__image {
    display: none;
  }
}
.partners-section__image img {
  width: 65%;
  height: auto;
  display: block;
}
.partners-section__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.partners-section__label {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8A3FFC;
}
.partners-section__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 1.15;
  color: #000000;
}
@media (max-width: 1024px) {
  .partners-section__title {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .partners-section__title {
    font-size: 28px;
  }
}
.partners-section__logos {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 23px;
  flex-wrap: wrap;
}
.partners-section__logo {
  height: 104px;
  width: auto;
  object-fit: contain;
  display: block;
}

.contact-section {
  background-color: #1B1B28;
  padding: 40px 0;
}
.contact-section__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 96px;
  align-items: start;
}
@media (max-width: 1024px) {
  .contact-section__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.contact-section__info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.contact-section__label {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.contact-section__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.1;
  color: #FFFFFF;
}
.contact-section__title span {
  color: #8A3FFC;
}
@media (max-width: 1024px) {
  .contact-section__title {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .contact-section__title {
    font-size: 28px;
  }
}
.contact-section__text {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}
.contact-section__contacts {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-section__contact-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}
.contact-section__contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background-color: rgba(138, 63, 252, 0.15);
  color: #8A3FFC;
  flex-shrink: 0;
}
.contact-section__contact-icon svg {
  width: 20px;
  height: 20px;
}
.contact-section__contact-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.contact-section__contact-label {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}
.contact-section__contact-value {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #FFFFFF;
  transition: color 0.2s ease;
}
.contact-section__contact-value:hover {
  color: #D360FF;
}
.contact-section__form-shortcode {
  width: 100%;
}
.contact-section__form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-section__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 768px) {
  .contact-section__form-row {
    grid-template-columns: 1fr;
  }
}
.contact-section__form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-section__form-label {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: #FFFFFF;
}
.contact-section__form-input, .contact-section__form-select, .contact-section__form-textarea {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 14px 16px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: #FFFFFF;
  outline: none;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.contact-section__form-input::placeholder, .contact-section__form-select::placeholder, .contact-section__form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.contact-section__form-input:focus, .contact-section__form-select:focus, .contact-section__form-textarea:focus {
  border-color: #8A3FFC;
  background-color: rgba(255, 255, 255, 0.08);
}
.contact-section__form-select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 5L7 10L12 5' stroke='rgba(255,255,255,0.4)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.contact-section__form-select option {
  background-color: #1B1B28;
  color: #FFFFFF;
}
.contact-section__form-textarea {
  resize: vertical;
  min-height: 140px;
}
.contact-section__budget {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-section__budget-options {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  flex-wrap: wrap;
}
.contact-section__budget-option input[type=radio] {
  display: none;
}
.contact-section__budget-option input[type=radio]:checked + label {
  background-color: #8A3FFC;
  border-color: #8A3FFC;
  color: #FFFFFF;
}
.contact-section__budget-option label {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  padding: 8px 16px;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.contact-section__budget-option label:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: #FFFFFF;
}
.contact-section__form-checkbox {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 16px;
}
.contact-section__form-checkbox input[type=checkbox] {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
  transition: background-color 0.2s ease, border-color 0.2s ease;
  margin-top: 2px;
}
.contact-section__form-checkbox input[type=checkbox]:checked {
  background-color: #8A3FFC;
  border-color: #8A3FFC;
}
.contact-section__form-checkbox input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 6px;
  width: 5px;
  height: 9px;
  border: 2px solid #FFFFFF;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}
.contact-section__form-checkbox label {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: #FFFFFF;
  cursor: pointer;
  line-height: 1.5;
}
.contact-section__form-checkbox label a {
  color: #FFF;
  text-decoration: underline;
}
.contact-section__form-note {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  color: #FFFFFF;
}
.contact-section__form-status {
  font-family: "Inter", sans-serif;
  text-align: center;
  font-size: 16px;
  color: #08ff45;
}

.page-hero-section {
  padding: 40px 0 40px;
}
.page-hero-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}
@media (max-width: 1024px) {
  .page-hero-section__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.page-hero-section__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.page-hero-section__label {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.page-hero-section__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 56px;
  line-height: 1.05;
}
.page-hero-section__title span {
  color: #8A3FFC;
}
@media (max-width: 1024px) {
  .page-hero-section__title {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .page-hero-section__title {
    font-size: 32px;
  }
}
.page-hero-section__text {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  max-width: 480px;
}
.page-hero-section__stats {
  display: flex;
  gap: 40px;
  padding-top: 24px;
}
@media (max-width: 768px) {
  .page-hero-section__stats {
    gap: 40px;
  }
}
.page-hero-section__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.page-hero-section__stat-value {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1;
}
@media (max-width: 768px) {
  .page-hero-section__stat-value {
    font-size: 36px;
  }
}
.page-hero-section__stat-label {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #8A3FFC;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.page-hero-section__media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
@media (max-width: 1024px) {
  .page-hero-section__media {
    aspect-ratio: 16/9;
  }
}
.page-hero-section__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.benefits-section {
  padding: 96px 0;
}
.benefits-section__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}
.benefits-section__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 40px;
  line-height: 1.1;
  color: #000000;
  max-width: 650px;
}
@media (max-width: 1024px) {
  .benefits-section__title {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .benefits-section__title {
    font-size: 26px;
  }
}
.benefits-section__subtitle {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  line-height: 1.1;
  color: #000000;
}
.benefits-section__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .benefits-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .benefits-section__grid {
    grid-template-columns: 1fr;
  }
}
.benefits-section__card {
  background: rgba(76, 181, 174, 0.2);
  border-radius: 16px;
  padding: 24px 15px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.benefits-section__card:nth-child(2) {
  background: rgba(138, 63, 252, 0.2);
}
.benefits-section__card:nth-child(3) {
  background: rgba(194, 0, 220, 0.2);
}
.benefits-section__card:nth-child(4) {
  background: rgba(211, 96, 255, 0.2);
}
.benefits-section__card:nth-child(5) {
  background: rgba(138, 63, 252, 0.2);
}
.benefits-section__card:nth-child(6) {
  background: rgba(83, 148, 190, 0.2);
}
.benefits-section__card:nth-child(7) {
  background: rgba(118, 6, 175, 0.2);
}
.benefits-section__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}
.benefits-section__card-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 24px;
  line-height: 1.3;
  color: #000000;
  min-height: 64px;
}
.benefits-section__card-text {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.1;
  color: #000000;
}

.page-template-page-academy .benefits-section__title {
  max-width: 100%;
  text-align: center;
}

.why-us-section {
  padding: 96px 0;
}
.why-us-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}
@media (max-width: 1024px) {
  .why-us-section__inner {
    grid-template-columns: 1fr;
  }
}
.why-us-section__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.why-us-section__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.why-us-section__label {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8A3FFC;
}
.why-us-section__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.1;
}
.why-us-section__title span {
  color: #8A3FFC;
}
@media (max-width: 1024px) {
  .why-us-section__title {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .why-us-section__title {
    font-size: 26px;
  }
}
.why-us-section__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.why-us-section__item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #E2D6FF;
}
.why-us-section__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.why-us-section__item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-us-section__item-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.why-us-section__item-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 24px;
}
.why-us-section__item-text {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.6;
}
.why-us-section__media {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/5;
}
@media (max-width: 1024px) {
  .why-us-section__media {
    display: none;
  }
}
.why-us-section__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.case-study-section {
  background-color: #F1F1FF;
  padding: 96px 0;
}
.case-study-section__card {
  background-color: #1B1B28;
  border-radius: 16px;
  padding: 96px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}
@media (max-width: 1024px) {
  .case-study-section__card {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 40px;
  }
}
@media (max-width: 768px) {
  .case-study-section__card {
    padding: 40px 24px;
  }
}
.case-study-section__info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.case-study-section__logo img {
  height: 32px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.case-study-section__quote {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.4;
  color: #FFFFFF;
}
@media (max-width: 768px) {
  .case-study-section__quote {
    font-size: 18px;
  }
}
.case-study-section__author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.case-study-section__author-name {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #FFFFFF;
}
.case-study-section__author-role {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}
.case-study-section__link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #D360FF;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.case-study-section__link svg {
  width: 16px;
  height: 16px;
}
.case-study-section__link:hover {
  opacity: 0.75;
}
.case-study-section__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 768px) {
  .case-study-section__stats {
    grid-template-columns: 1fr 1fr;
  }
}
.case-study-section__stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 40px 24px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.case-study-section__stat-value {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1;
  color: #FFFFFF;
}
@media (max-width: 1024px) {
  .case-study-section__stat-value {
    font-size: 36px;
  }
}
.case-study-section__stat-label {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.5);
}

.faq-section {
  padding: 96px 0;
}
.faq-section__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
  max-width: 560px;
}
.faq-section__label {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8A3FFC;
}
.faq-section__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 1.1;
  color: #000000;
  text-align: center;
}
@media (max-width: 1024px) {
  .faq-section__title {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .faq-section__title {
    font-size: 26px;
  }
}
.faq-section__list {
  display: flex;
  flex-direction: column;
  max-width: 835px;
  margin: 0 auto;
}
.faq-section__item {
  border-bottom: 2px solid #E2D6FF;
}
.faq-section__item[open] .faq-section__item-icon {
  transform: rotate(45deg);
}
.faq-section__item-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  cursor: pointer;
  list-style: none;
}
.faq-section__item-summary::-webkit-details-marker {
  display: none;
}
.faq-section__item-question {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.3;
  color: #000000;
}
@media (max-width: 768px) {
  .faq-section__item-question {
    font-size: 16px;
  }
}
.faq-section__item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #000000;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.faq-section__item-icon svg {
  width: 22px;
  height: 22px;
}
.faq-section__item-answer {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #000000;
  padding-bottom: 22px;
}

.newsletter-section {
  background: linear-gradient(93.76deg, #8A3FFC 0%, #D360FF 20.13%, #D360FF 77.38%, #8A3FFC 100.68%);
  padding: 80px 0;
}
@media (max-width: 1023px) {
  .newsletter-section {
    margin-bottom: 24px;
  }
}
.newsletter-section__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.newsletter-section__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 650px;
}
.newsletter-section__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 1.2;
  color: #000000;
  text-align: center;
}
@media (max-width: 768px) {
  .newsletter-section__title {
    font-size: 24px;
  }
}
.newsletter-section__text {
  display: none;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}
.newsletter-section__form {
  width: 625px;
  position: relative;
  max-width: 100%;
}
.newsletter-section__form .subscribe-status {
  padding: 12px 0 0 36px;
}
.newsletter-section__form input {
  width: 100%;
  height: 54px;
  padding: 14px 70px 14px 36px;
  border-radius: 42px;
  font-size: 16px;
  line-height: 1;
  color: #000000;
  box-shadow: 0px 0px 60px 0px #8A3FFC;
  background: #FFF;
  border: none;
}
.newsletter-section__form .btn {
  height: 42px;
  width: 207px;
}
@media (min-width: 1024px) {
  .newsletter-section__form .btn {
    position: absolute;
    top: 6px;
    right: 6px;
  }
}
@media (max-width: 1023px) {
  .newsletter-section__form .btn {
    margin: 16px auto;
    display: flex;
  }
}

.blog-hero-section {
  padding: 40px 0;
}
.blog-hero-section__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 1024px) {
  .blog-hero-section__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
}
.blog-hero-section__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 600px;
}
.blog-hero-section__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 56px;
  line-height: 1.05;
}
@media (max-width: 1024px) {
  .blog-hero-section__title {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .blog-hero-section__title {
    font-size: 30px;
  }
}
.blog-hero-section__actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  overflow: auto;
  max-width: 100%;
  width: 100%;
  background: #FFFFFF;
  border-radius: 42px;
  margin-top: 120px;
}
.blog-hero-section__actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  background: #FFF;
  color: #000000;
  transition: 0.3s ease-in-out;
  border-radius: 42px;
}
.blog-hero-section__actions a:hover {
  background: #8A3FFC;
  color: #FFFFFF;
}
.blog-hero-section__counter {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
  gap: 4px;
}
@media (max-width: 1024px) {
  .blog-hero-section__counter {
    align-items: flex-start;
  }
}
.blog-hero-section__counter-value {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 72px;
  line-height: 1;
}
@media (max-width: 768px) {
  .blog-hero-section__counter-value {
    font-size: 48px;
  }
}
.blog-hero-section__counter-label {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8A3FFC;
}
@media (max-width: 1024px) {
  .blog-hero-section__counter-label {
    text-align: left;
  }
}
.blog-hero-section__subscribe {
  width: 625px;
  position: relative;
  max-width: 100%;
}
.blog-hero-section__subscribe .subscribe-status {
  padding: 14px 0 0 38px;
}
@media (max-width: 1023px) {
  .blog-hero-section__subscribe {
    width: 100%;
  }
}
.blog-hero-section__subscribe input {
  width: 100%;
  height: 54px;
  padding: 14px 70px 14px 36px;
  border-radius: 42px;
  font-size: 16px;
  line-height: 1;
  color: #000000;
  box-shadow: 0px 0px 60px 0px #8A3FFC;
  background: #FFF;
  border: none;
}
.blog-hero-section__subscribe .btn {
  position: absolute;
  top: 6px;
  right: 6px;
  height: 42px;
  width: 207px;
}
@media (max-width: 1023px) {
  .blog-hero-section__subscribe .btn {
    width: auto;
    padding-left: 12px;
    padding-right: 12px;
  }
}

.featured-post-section {
  padding: 40px 0 40px;
}
.featured-post-section__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 1024px) {
  .featured-post-section__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
}
.featured-post-section__media {
  width: 538px;
  height: auto;
  margin-right: 20px;
}
@media (max-width: 1023px) {
  .featured-post-section__media {
    width: 100%;
  }
}
.featured-post-section__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.featured-post-section__category {
  font-size: 12px;
  line-height: 1;
  padding: 6px 16px;
  color: #000000;
  border-radius: 42px;
  background: #FFFFFF;
  margin-bottom: 24px;
}
.featured-post-section__title {
  font-size: 36px;
  line-height: 1;
  color: #000000;
  font-weight: 400;
  margin-bottom: 48px;
}
.blog-listing-section {
  padding: 40px 0 96px;
}
.blog-listing-section__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
.blog-listing-section__main {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.blog-listing-section__group {
  display: flex;
  align-items: flex-start;
  padding-left: 24px;
}
@media (min-width: 1270px) {
  .blog-listing-section__group {
    padding-left: calc((100vw - 1270px) / 2 + 24px);
  }
}
@media (max-width: 768px) {
  .blog-listing-section__group {
    flex-direction: column;
    gap: 40px;
  }
}
.blog-listing-section__group-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
  flex-shrink: 0;
  width: 400px;
  padding-right: 40px;
}
@media (max-width: 1024px) {
  .blog-listing-section__group-header {
    width: 260px;
    padding-right: 24px;
  }
}
@media (max-width: 768px) {
  .blog-listing-section__group-header {
    width: 100%;
    padding-right: 0;
  }
}
.blog-listing-section__group-count {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  font-size: 16px;
  color: #000;
}
.blog-listing-section__group-count b {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}
.blog-listing-section__group-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 48px;
  color: #000000;
}
@media (max-width: 1024px) {
  .blog-listing-section__group-title {
    font-size: 32px;
  }
}
.blog-listing-section__group-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  overflow-x: auto;
  flex: 1;
  width: 0;
  padding-bottom: 22px;
}
@media (max-width: 768px) {
  .blog-listing-section__group-grid {
    flex-wrap: wrap;
    overflow-x: visible;
    width: 100%;
  }
}

.blog-category-section {
  padding: 40px 0 96px;
}
.blog-category-section__tabs {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
  margin: 40px 0;
  border-radius: 42px;
  background: #FFF;
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.blog-category-section__tabs::-webkit-scrollbar {
  display: none;
}
@media (max-width: 768px) {
  .blog-category-section__tabs {
    gap: 6px;
  }
}
.blog-category-section__tab {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: bold;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 42px;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}
.blog-category-section__tab:after {
  content: "";
  width: 24px;
  height: 24px;
  background: url("../images/blog-category-nav-icon.svg") no-repeat center;
  background-size: contain;
}
.blog-category-section__tab:hover {
  color: #8A3FFC;
}
.blog-category-section__tab--active {
  background-color: #8A3FFC;
  border-color: #8A3FFC;
  color: #FFFFFF;
  box-shadow: -2px 4px 4px 0px rgba(255, 255, 255, 0.2509803922) inset;
}
.blog-category-section__tab--active:after {
  background: url("../images/blog-category-nav-icon-white.svg") no-repeat center;
  background-size: contain;
}
.blog-category-section__tab--active:hover {
  color: #FFFFFF;
}
.blog-category-section__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .blog-category-section__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
.blog-category-section__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 48px;
  color: #000000;
}
@media (max-width: 768px) {
  .blog-category-section__title {
    font-size: 24px;
  }
}
.blog-category-section__count {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1;
  color: rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .blog-category-section__count {
    font-size: 32px;
  }
}
.blog-category-section .blog-category-count {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.blog-category-section .blog-category-count__ttl {
  font-size: 16px;
  line-height: 1;
  text-transform: uppercase;
  color: #8A3FFC;
}
.blog-category-section .blog-category-count__val {
  font-weight: 600;
  font-size: 64px;
  line-height: 1;
}
.blog-category-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .blog-category-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .blog-category-section__grid {
    grid-template-columns: 1fr;
  }
}
.blog-category-section__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.blog-category-section__page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.blog-category-section__page-link:hover {
  border-color: #8A3FFC;
  color: #8A3FFC;
}
.blog-category-section__page-link--active {
  background-color: #8A3FFC;
  border-color: #8A3FFC;
  color: #FFFFFF;
}

.article-hero-section {
  padding: 40px 0 40px;
}
.article-hero-section__inner {
  display: flex;
  flex-direction: column;
}
.article-hero-section__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 1.08;
  color: #000000;
  margin-bottom: 36px;
}
@media (max-width: 1024px) {
  .article-hero-section__title {
    font-size: 38px;
  }
}
@media (max-width: 768px) {
  .article-hero-section__title {
    font-size: 28px;
  }
}
.article-hero-section__image {
  width: 100%;
  height: 400px;
  margin-bottom: 36px;
}
.article-hero-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article-hero-section__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #000000;
  text-transform: uppercase;
}
.article-hero-section__author-info {
  display: flex;
  align-items: center;
  gap: 16px;
}
.article-hero-section__author-name {
  display: flex;
  align-items: center;
  gap: 16px;
}
.article-hero-section__author-name:after {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  display: block;
  background: #8A3FFC;
}

.breadcrumbs {
  padding: 16px 0;
  display: flex;
  align-items: center;
  gap: 16px;
}
.breadcrumbs .breadcrumbs__item {
  color: #9B9B9B;
  transition: 0.3s ease-in-out;
}
.breadcrumbs a.breadcrumbs__item:hover {
  color: #000000;
}
.breadcrumbs span.breadcrumbs__item {
  color: #D360FF;
  font-weight: 600;
}

.article-content-section {
  padding: 0 0 96px;
}
.article-content-section__layout {
  display: grid;
  grid-template-columns: 1fr 365px;
  gap: 40px;
  align-items: start;
}
@media (max-width: 1024px) {
  .article-content-section__layout {
    grid-template-columns: 1fr;
  }
}
.article-content-section__body {
  min-width: 0;
}
.article-content-section__cover {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 40px;
  aspect-ratio: 16/8;
}
.article-content-section__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.article-content-section__wysiwyg {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  line-height: 1.25;
  color: #000000;
}
.article-content-section__wysiwyg h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 1.2;
  color: #000000;
  margin-top: 20px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .article-content-section__wysiwyg h2 {
    font-size: 22px;
  }
}
.article-content-section__wysiwyg h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 1.3;
  color: #000000;
  margin-top: 20px;
  margin-bottom: 30px;
}
.article-content-section__wysiwyg p {
  margin-bottom: 24px;
}
.article-content-section__wysiwyg p:last-child {
  margin-bottom: 0;
}
.article-content-section__wysiwyg a {
  color: #D360FF;
  text-decoration: underline;
  text-decoration-color: rgba(211, 96, 255, 0.3);
  transition: text-decoration-color 0.2s ease;
}
.article-content-section__wysiwyg a:hover {
  text-decoration-color: #8A3FFC;
}
.article-content-section__wysiwyg ul,
.article-content-section__wysiwyg ol {
  padding-left: 40px;
  margin-bottom: 24px;
  font-size: 16px;
}
.article-content-section__wysiwyg ul li,
.article-content-section__wysiwyg ol li {
  margin-bottom: 6px;
}
.article-content-section__wysiwyg ul li {
  list-style: disc;
}
.article-content-section__wysiwyg ol li {
  list-style: decimal;
}
.article-content-section__wysiwyg blockquote {
  border-left: 3px solid #8A3FFC;
  padding: 16px 24px;
  margin: 40px 0;
  background-color: rgba(138, 63, 252, 0.05);
  border-radius: 0 8px 8px 0;
}
.article-content-section__wysiwyg blockquote p {
  font-size: 17px;
  font-style: italic;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 0;
}
.article-content-section__wysiwyg img {
  width: 100%;
  border-radius: 8px;
  margin: 24px 0;
}
.article-content-section__wysiwyg strong {
  font-weight: 600;
  color: #000000;
}
.article-content-section__sidebar {
  position: sticky;
  top: 100px;
}
@media (max-width: 1024px) {
  .article-content-section__sidebar {
    display: none;
  }
}
.article-content-section__toc-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 36px;
  margin-bottom: 16px;
}
.article-content-section__toc-btn {
  margin-top: 42px;
}
@media (max-width: 1023px) {
  .article-content-section__toc-btn {
    margin-top: 22px;
  }
}
.article-content-section__toc-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.article-content-section__toc-link {
  width: 100%;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1;
  color: #000000;
  text-decoration: none;
  padding: 12px 24px;
  background: #dccdfe;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
  border-radius: 42px;
}
.article-content-section__toc-link:hover, .article-content-section__toc-link--active {
  background: #FFFFFF;
}

.related-articles-section {
  padding: 0 0 96px;
}
.related-articles-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .related-articles-section__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
.related-articles-section__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 48px;
  color: #000000;
}
@media (max-width: 768px) {
  .related-articles-section__title {
    font-size: 24px;
  }
}
.related-articles-section__link {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #8A3FFC;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}
.related-articles-section__link:hover {
  opacity: 0.7;
}
.related-articles-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .related-articles-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .related-articles-section__grid {
    grid-template-columns: 1fr;
  }
}

.blog-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-decoration: none;
  min-width: 400px;
  max-width: 400px;
  padding: 24px 16px;
  border-radius: 20px;
  background: rgba(138, 63, 252, 0.2);
}
.blog-card:hover .blog-card__image {
  transform: scale(1.03);
}
.blog-card:hover .blog-card__title {
  color: #8A3FFC;
}
.blog-card__media {
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  height: 190px;
}
.blog-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.blog-card__meta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  flex-wrap: wrap;
}
.blog-card__category {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #000000;
  background-color: #FFFFFF;
  border-radius: 100px;
  padding: 4px 10px;
  text-decoration: none;
}
.blog-card__date {
  display: none;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.4);
}
.blog-card__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.4;
  color: #000000;
  transition: color 0.2s ease;
}
@media (max-width: 1023px) {
  .blog-card__title {
    font-size: 18px;
  }
}
.blog-card__read-time {
  display: none;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.4);
}
.blog-card--dark .blog-card__date,
.blog-card--dark .blog-card__read-time {
  color: rgba(255, 255, 255, 0.4);
}
.blog-card--dark .blog-card__title {
  color: #FFFFFF;
}
.blog-card--dark:hover .blog-card__title {
  color: #D360FF;
}

.about-hero-section {
  padding: 96px 0 40px;
  overflow: hidden;
}
.about-hero-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}
@media (max-width: 1024px) {
  .about-hero-section__inner {
    grid-template-columns: 1fr;
  }
}
.about-hero-section__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
}
.about-hero-section__tags {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  flex-wrap: wrap;
}
.about-hero-section__tag {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  padding: 5px 12px;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.about-hero-section__tag:hover {
  border-color: #8A3FFC;
  color: #8A3FFC;
}
.about-hero-section__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 64px;
  line-height: 1;
}
.about-hero-section__title span {
  color: #8A3FFC;
}
@media (max-width: 1024px) {
  .about-hero-section__title {
    font-size: 44px;
  }
}
@media (max-width: 768px) {
  .about-hero-section__title {
    font-size: 32px;
  }
}
.about-hero-section__subtitle {
  margin-bottom: 40px;
  font-size: 20px;
}
.about-hero-section__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.about-hero-section__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.about-hero-section__stat-value {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 64px;
  line-height: 1;
}
@media (max-width: 768px) {
  .about-hero-section__stat-value {
    font-size: 36px;
  }
}
.about-hero-section__stat-label {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #8A3FFC;
  text-transform: uppercase;
}
.about-hero-section__collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 8px;
}
@media (max-width: 1024px) {
  .about-hero-section__collage {
    display: none;
  }
}
.about-hero-section__collage-item {
  border-radius: 8px;
  overflow: hidden;
  min-height: 180px;
}
.about-hero-section__collage-item:first-child {
  grid-row: span 2;
  min-height: 100%;
}
.about-hero-section__collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-intro-section {
  background-color: #F1F1FF;
  padding: 96px 0;
}
.about-intro-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}
@media (max-width: 1024px) {
  .about-intro-section__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.about-intro-section__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.about-intro-section__label {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8A3FFC;
}
.about-intro-section__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.1;
  color: #000000;
}
@media (max-width: 1024px) {
  .about-intro-section__title {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .about-intro-section__title {
    font-size: 26px;
  }
}
.about-intro-section__text {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.65);
}
.about-intro-section__actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}
.about-intro-section__media {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.about-intro-section__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-values-section {
  padding: 96px 0;
}
.about-values-section__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  max-width: 600px;
  padding-bottom: 40px;
}
.about-values-section__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 40px;
  line-height: 1.1;
  text-align: center;
  margin-bottom: 40px;
}
.about-values-section__title span {
  color: #8A3FFC;
}
@media (max-width: 1024px) {
  .about-values-section__title {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .about-values-section__title {
    font-size: 26px;
  }
}
.about-values-section__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .about-values-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .about-values-section__grid {
    grid-template-columns: 1fr;
  }
}
.about-values-section__card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 14px;
  background: rgba(76, 181, 174, 0.2);
  border-radius: 16px;
}
.about-values-section__card:nth-child(2) {
  background: rgba(138, 63, 252, 0.2);
}
.about-values-section__card:nth-child(3) {
  background: rgba(194, 0, 220, 0.2);
}
.about-values-section__card:nth-child(4) {
  background: rgba(211, 96, 255, 0.2);
}
.about-values-section__card-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 24px;
  min-height: 58px;
}
.about-values-section__card-text {
  font-size: 16px;
  line-height: 1.1;
}

.about-portfolio-section {
  background-color: #1B1B28;
  padding: 96px 0;
}
.about-portfolio-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .about-portfolio-section__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
.about-portfolio-section__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #FFFFFF;
}
@media (max-width: 768px) {
  .about-portfolio-section__title {
    font-size: 24px;
  }
}
.about-portfolio-section__link {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.about-portfolio-section__link:hover {
  color: #D360FF;
}
.about-portfolio-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .about-portfolio-section__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .about-portfolio-section__grid {
    grid-template-columns: 1fr;
  }
}
.about-portfolio-section__card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
  text-decoration: none;
  display: block;
}
.about-portfolio-section__card:hover .about-portfolio-section__card-image {
  transform: scale(1.04);
}
.about-portfolio-section__card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.about-portfolio-section__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27, 27, 40, 0.9) 0%, rgba(27, 27, 40, 0.2) 60%, transparent 100%);
}
.about-portfolio-section__card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.about-portfolio-section__card-stat {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1;
  color: #FFFFFF;
}
.about-portfolio-section__card-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #FFFFFF;
}
.about-portfolio-section__card-label {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.certifications-section {
  padding: 96px 0;
}
.certifications-section__inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 96px;
  align-items: center;
}
@media (max-width: 1024px) {
  .certifications-section__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.certifications-section__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
}
.certifications-section__label {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8A3FFC;
}
.certifications-section__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 40px;
  line-height: 1.1;
  color: #000000;
}
@media (max-width: 1024px) {
  .certifications-section__title {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .certifications-section__title {
    font-size: 26px;
  }
}
.certifications-section__text {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.6);
}
.certifications-section__link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #8A3FFC;
  text-decoration: none;
  transition: opacity 0.2s ease;
  width: fit-content;
}
.certifications-section__link:hover {
  opacity: 0.7;
}
.certifications-section__link svg {
  width: 16px;
  height: 16px;
}
.certifications-section__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 485px;
}
@media (max-width: 768px) {
  .certifications-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.certifications-section__cert {
  display: flex;
  align-items: center;
  justify-content: center;
}
.certifications-section__cert img {
  max-width: 100px;
  object-fit: contain;
}

.team-section {
  padding: 96px 0;
}
.team-section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .team-section__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
.team-section__heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.team-section__label {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8A3FFC;
}
.team-section__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 40px;
  line-height: 1.1;
  color: #000000;
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  .team-section__title {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .team-section__title {
    font-size: 26px;
  }
}
.team-section__subtitle {
  font-size: 20px;
  line-height: 1.1;
}
.team-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 872px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .team-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .team-section__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.team-section__card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.team-section__card-photo {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.team-section__card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.team-section__card-photo:hover img {
  transform: scale(1.03);
}
.team-section__card-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.team-section__card-name {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #000000;
}
.team-section__card-role {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.5);
}
.team-section__card-social {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  margin-top: 4px;
}
.team-section__card-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: rgba(0, 0, 0, 0.5);
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.team-section__card-social-link svg {
  width: 14px;
  height: 14px;
}
.team-section__card-social-link:hover {
  border-color: #8A3FFC;
  color: #8A3FFC;
}

.post-section {
  padding: 96px 0;
}
.post-section__ttl {
  text-align: center;
  font-size: 40px;
  margin-bottom: 20px;
}
.post-section__subttl {
  text-align: center;
  font-size: 16px;
  margin-bottom: 42px;
}
.post-section__listing {
  margin: 0 auto;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1023px) {
  .post-section__listing {
    flex-direction: column;
  }
}
.post-section__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 40px;
  line-height: 1.1;
  color: #000000;
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  .post-section__title {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .post-section__title {
    font-size: 26px;
  }
}
.post-section__subtitle {
  font-size: 20px;
  line-height: 1.1;
}
.post-section__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .post-section__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .post-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.post-section__card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.post-section__card-photo {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.post-section__card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.post-section__card-photo:hover img {
  transform: scale(1.03);
}
.post-section__card-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.post-section__card-name {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #000000;
}
.post-section__card-role {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.5);
}
.post-section__card-social {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  margin-top: 4px;
}
.post-section__card-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: rgba(0, 0, 0, 0.5);
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.post-section__card-social-link svg {
  width: 14px;
  height: 14px;
}
.post-section__card-social-link:hover {
  border-color: #8A3FFC;
  color: #8A3FFC;
}

.contact-hero-section {
  padding: 40px 0 96px;
}
@media (max-width: 1023px) {
  .contact-hero-section {
    padding-bottom: 40px;
  }
}
.contact-hero-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}
@media (max-width: 1024px) {
  .contact-hero-section__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.contact-hero-section__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.contact-hero-section__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 64px;
  line-height: 1.05;
}
@media (max-width: 1024px) {
  .contact-hero-section__title {
    font-size: 38px;
  }
}
@media (max-width: 768px) {
  .contact-hero-section__title {
    font-size: 30px;
  }
}
.contact-hero-section__stats {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 1023px) {
  .contact-hero-section__stats {
    padding-top: 0;
  }
}
.contact-hero-section__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-hero-section__stat-value {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 64px;
  line-height: 1;
}
@media (max-width: 768px) {
  .contact-hero-section__stat-value {
    font-size: 32px;
  }
}
.contact-hero-section__stat-label {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #8A3FFC;
}
.contact-hero-section__actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}
.contact-hero-section__media {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
@media (max-width: 1024px) {
  .contact-hero-section__media {
    display: none;
  }
}
.contact-hero-section__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-hero-section__media--mobile {
  display: none;
}

@media (max-width: 767px) {
  .contact-hero-section__media--mobile {
    display: block;
  }
  .contact-hero-section__media:not(.contact-hero-section__media--mobile) {
    display: none;
  }
}
.contact-info-section {
  padding: 40px 0;
}
.contact-info-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .contact-info-section__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .contact-info-section__grid {
    grid-template-columns: 1fr;
  }
}
.contact-info-section__card {
  background: rgba(138, 63, 252, 0.2);
  border-radius: 16px;
  padding: 24px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-info-section__card:nth-child(1) {
  background: rgba(138, 63, 252, 0.9);
}
.contact-info-section__card:nth-child(1) .contact-info-section__card-title,
.contact-info-section__card:nth-child(1) .contact-info-section__card-item,
.contact-info-section__card:nth-child(1) .contact-info-section__card-item a {
  color: #FFFFFF;
}
.contact-info-section__card-icon {
  width: 32px;
  height: 32px;
  margin: 0 auto 42px 12px;
}
.contact-info-section__card-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 30px;
  color: #000000;
}
.contact-info-section__card-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-info-section__card-item {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.65);
}
.contact-info-section__card-item a {
  color: rgba(0, 0, 0, 0.65);
  text-decoration: none;
  transition: color 0.2s ease;
}
.contact-info-section__card-item a:hover {
  color: #8A3FFC;
}
.contact-info-section__card-item strong {
  font-weight: 600;
  color: #000000;
}

.map-section {
  background-color: #F1F1FF;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (max-width: 1023px) {
  .map-section {
    display: none;
  }
}
.map-section__media {
  width: 100%;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .map-section__media {
    height: 280px;
  }
}
@media (max-width: 768px) {
  .map-section__media {
    height: 220px;
  }
}
.map-section__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.map-section__iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.directions-section {
  background-color: #F1F1FF;
  padding: 96px 0;
}
@media (max-width: 1023px) {
  .directions-section {
    padding: 40px 0;
  }
}
.directions-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
}
@media (max-width: 1024px) {
  .directions-section__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.directions-section__media {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.directions-section__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 1024px) {
  .directions-section__media {
    order: -1;
  }
}
.directions-section__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.directions-section__label {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8A3FFC;
}
.directions-section__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.1;
  color: #000000;
}
@media (max-width: 768px) {
  .directions-section__title {
    font-size: 26px;
  }
}
.directions-section__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.directions-section__item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 24px;
}
.directions-section__item-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #8A3FFC;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #FFFFFF;
  flex-shrink: 0;
}
.directions-section__item-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 4px;
}
.directions-section__item-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #000000;
}
.directions-section__item-text {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.6);
}

.portfolio-hero-section {
  padding: 40px 0;
}
.portfolio-hero-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 75px;
}
@media (max-width: 1024px) {
  .portfolio-hero-section__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.portfolio-hero-section__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}
.portfolio-hero-section__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 64px;
  line-height: 1.2;
}
@media (max-width: 1024px) {
  .portfolio-hero-section__title {
    font-size: 38px;
  }
}
@media (max-width: 768px) {
  .portfolio-hero-section__title {
    font-size: 30px;
  }
}
.portfolio-hero-section__text {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  line-height: 1.1;
  max-width: 520px;
}
.portfolio-hero-section__stats {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.portfolio-hero-section__stat {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.portfolio-hero-section__stat-value {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 40px;
  line-height: 1;
}
@media (max-width: 768px) {
  .portfolio-hero-section__stat-value {
    font-size: 32px;
  }
}
.portfolio-hero-section__stat-label {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #8A3FFC;
}
.portfolio-hero-section__featured {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 638px;
  display: block;
  text-decoration: none;
}
.portfolio-hero-section__featured:hover .portfolio-hero-section__featured-image {
  transform: scale(1.03);
}
@media (max-width: 1024px) {
  .portfolio-hero-section__featured {
    height: auto;
    display: none;
  }
}
.portfolio-hero-section__featured-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.portfolio-hero-section__featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27, 27, 40, 0.85) 0%, transparent 60%);
}
.portfolio-hero-section__featured-content {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}
.portfolio-hero-section__featured-name {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 36px;
  color: #FFFFFF;
}
.portfolio-hero-section__featured-stat {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: #FFFFFF;
}
.portfolio-hero-section__tabs {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 1024px) {
  .portfolio-hero-section__tabs {
    grid-column: 1/-1;
  }
}
.portfolio-hero-section__tab {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  padding: 7px 16px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.portfolio-hero-section__tab:hover {
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.3);
}
.portfolio-hero-section__tab--active {
  background-color: #8A3FFC;
  border-color: #8A3FFC;
  color: #FFFFFF;
}

.portfolio-case-section {
  padding: 40px 0;
}
@media (max-width: 1023px) {
  .portfolio-case-section {
    padding-bottom: 0px;
  }
}
.portfolio-case-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}
@media (max-width: 1024px) {
  .portfolio-case-section__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.portfolio-case-section__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}
.portfolio-case-section__tag {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #8A3FFC;
  text-transform: uppercase;
}
.portfolio-case-section__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 40px;
  line-height: 1.1;
}
@media (max-width: 768px) {
  .portfolio-case-section__title {
    font-size: 26px;
  }
}
.portfolio-case-section__stats {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
  padding: 24px 0;
}
@media (max-width: 1023px) {
  .portfolio-case-section__stats {
    flex-wrap: wrap;
  }
}
.portfolio-case-section__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.portfolio-case-section__stat-value {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 40px;
  line-height: 1;
}
@media (max-width: 768px) {
  .portfolio-case-section__stat-value {
    font-size: 30px;
  }
}
.portfolio-case-section__stat-label {
  font-family: "Inter", sans-serif;
  font-size: 13px;
}
.portfolio-case-section__results {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.portfolio-case-section__result-item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 16px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
}
.portfolio-case-section__result-item::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #8A3FFC;
  flex-shrink: 0;
  margin-top: 8px;
}
.portfolio-case-section__link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  align-self: flex-start;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #D360FF;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.portfolio-case-section__link svg {
  width: 16px;
  height: 16px;
}
.portfolio-case-section__link:hover {
  opacity: 0.75;
}
.portfolio-case-section__media {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.portfolio-case-section__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.portfolio-grid-section {
  padding: 40px 0;
}
.portfolio-grid-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .portfolio-grid-section__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
.portfolio-grid-section__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #FFFFFF;
}
@media (max-width: 768px) {
  .portfolio-grid-section__title {
    font-size: 24px;
  }
}
.portfolio-grid-section__link {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.portfolio-grid-section__link:hover {
  color: #D360FF;
}
.portfolio-grid-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}
@media (max-width: 1024px) {
  .portfolio-grid-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .portfolio-grid-section__grid {
    grid-template-columns: 1fr;
  }
}
.portfolio-grid-section__card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  display: block;
  text-decoration: none;
  aspect-ratio: 3/4;
}
.portfolio-grid-section__card--large {
  grid-row: span 2;
  aspect-ratio: auto;
  height: 100%;
  min-height: 400px;
}
@media (max-width: 768px) {
  .portfolio-grid-section__card--large {
    aspect-ratio: 3/4;
    height: auto;
    min-height: unset;
    grid-row: span 1;
  }
}
.portfolio-grid-section__card:hover .portfolio-grid-section__card-image {
  transform: scale(1.04);
}
.portfolio-grid-section__card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.portfolio-grid-section__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27, 27, 40, 0.88) 0%, transparent 60%);
}
.portfolio-grid-section__card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.portfolio-grid-section__card-stat {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1;
  color: #FFFFFF;
}
.portfolio-grid-section__card-name {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #FFFFFF;
}
.portfolio-grid-section__card-category {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.portfolio-process-section {
  background-color: #FFFFFF;
  padding: 96px 0;
}
.portfolio-process-section__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
  max-width: 540px;
}
.portfolio-process-section__label {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8A3FFC;
}
.portfolio-process-section__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.1;
  color: #000000;
}
@media (max-width: 1024px) {
  .portfolio-process-section__title {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .portfolio-process-section__title {
    font-size: 26px;
  }
}
.portfolio-process-section__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
@media (max-width: 1024px) {
  .portfolio-process-section__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .portfolio-process-section__steps {
    grid-template-columns: 1fr;
  }
}
.portfolio-process-section__step {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 40px 24px;
  position: relative;
  z-index: 1;
}
.portfolio-process-section__step:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -12px;
  top: 40px;
  font-size: 20px;
  color: rgba(0, 0, 0, 0.2);
  z-index: 1;
}
@media (max-width: 1024px) {
  .portfolio-process-section__step:not(:last-child)::after {
    display: none;
  }
}
.portfolio-process-section__step-number {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
  color: rgba(0, 0, 0, 0.08);
}
.portfolio-process-section__step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background-color: rgba(138, 63, 252, 0.1);
  color: #8A3FFC;
}
.portfolio-process-section__step-icon svg {
  width: 20px;
  height: 20px;
}
.portfolio-process-section__step-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: #000000;
}
.portfolio-process-section__step-text {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.6);
}

.portfolio-results-section {
  padding: 96px 0;
}
.portfolio-results-section__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 96px;
  align-items: center;
}
@media (max-width: 1024px) {
  .portfolio-results-section__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.portfolio-results-section__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.portfolio-results-section__label {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8A3FFC;
}
.portfolio-results-section__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 40px;
  line-height: 1.1;
  color: #000000;
}
@media (max-width: 768px) {
  .portfolio-results-section__title {
    font-size: 26px;
  }
}
.portfolio-results-section__text {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.6);
}
.portfolio-results-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.portfolio-results-section__stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.portfolio-results-section__stat-value {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 64px;
  line-height: 1;
  color: #000000;
}
@media (max-width: 768px) {
  .portfolio-results-section__stat-value {
    font-size: 38px;
  }
}
.portfolio-results-section__stat-label {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #8A3FFC;
  text-transform: uppercase;
}

.portfolio-single-hero-section {
  background-color: #1B1B28;
  padding: 96px 0 40px;
}
.portfolio-single-hero-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}
@media (max-width: 1024px) {
  .portfolio-single-hero-section__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.portfolio-single-hero-section__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.portfolio-single-hero-section__tag {
  align-self: flex-start;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #D360FF;
  background-color: rgba(138, 63, 252, 0.2);
  border-radius: 100px;
  padding: 5px 12px;
}
.portfolio-single-hero-section__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 52px;
  line-height: 1.05;
  color: #FFFFFF;
}
@media (max-width: 1024px) {
  .portfolio-single-hero-section__title {
    font-size: 38px;
  }
}
@media (max-width: 768px) {
  .portfolio-single-hero-section__title {
    font-size: 28px;
  }
}
.portfolio-single-hero-section__text {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}
.portfolio-single-hero-section__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 768px) {
  .portfolio-single-hero-section__stats {
    grid-template-columns: 1fr 1fr;
  }
}
.portfolio-single-hero-section__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.portfolio-single-hero-section__stat-value {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
  color: #FFFFFF;
}
@media (max-width: 768px) {
  .portfolio-single-hero-section__stat-value {
    font-size: 30px;
  }
}
.portfolio-single-hero-section__stat-label {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}
.portfolio-single-hero-section__media {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
@media (max-width: 1024px) {
  .portfolio-single-hero-section__media {
    display: none;
  }
}
.portfolio-single-hero-section__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.portfolio-challenges-section {
  background-color: #F1F1FF;
  padding: 96px 0;
}
.portfolio-challenges-section__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
  max-width: 560px;
}
.portfolio-challenges-section__label {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8A3FFC;
}
.portfolio-challenges-section__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.1;
  color: #000000;
}
@media (max-width: 768px) {
  .portfolio-challenges-section__title {
    font-size: 26px;
  }
}
.portfolio-challenges-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .portfolio-challenges-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .portfolio-challenges-section__grid {
    grid-template-columns: 1fr;
  }
}
.portfolio-challenges-section__card {
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.portfolio-challenges-section__card-number {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
  color: rgba(138, 63, 252, 0.15);
}
.portfolio-challenges-section__card-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 17px;
  line-height: 1.3;
  color: #000000;
}
.portfolio-challenges-section__card-text {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.6);
}

.vocabulary-alpha {
  position: relative;
  z-index: 10;
  margin-top: 40px;
}
.vocabulary-alpha__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-wrap: nowrap;
  background-color: #FFFFFF;
  border-radius: 42px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
@media (max-width: 1023px) {
  .vocabulary-alpha__inner {
    overflow: auto;
    justify-content: flex-start;
  }
}
.vocabulary-alpha__inner::-webkit-scrollbar {
  display: none;
}
.vocabulary-alpha__link {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: bold;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
  text-decoration: none;
  width: 42px;
  height: 42px;
  min-width: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 42px;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.vocabulary-alpha__link:hover {
  color: #8A3FFC;
}
.vocabulary-alpha__link--active {
  background-color: #8A3FFC;
  border-color: #8A3FFC;
  color: #FFFFFF;
  box-shadow: 0px 4px 60px 0px #8A3FFC;
}
.vocabulary-alpha__link--active:after {
  background: url("../images/blog-category-nav-icon-white.svg") no-repeat center;
  background-size: contain;
}
.vocabulary-alpha__link--active:hover {
  color: #FFFFFF;
}
.vocabulary-alpha__link--disabled {
  opacity: 0.25;
  pointer-events: none;
}

.vocabulary-hero {
  padding: 40px 0 40px;
}
.vocabulary-hero__breadcrumb {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  margin-bottom: 40px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.45);
}
.vocabulary-hero__breadcrumb a {
  color: rgba(0, 0, 0, 0.45);
  transition: color 0.2s ease;
}
.vocabulary-hero__breadcrumb a:hover {
  color: #8A3FFC;
}
.vocabulary-hero__breadcrumb-sep {
  opacity: 0.35;
}
.vocabulary-hero__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 64px;
  line-height: 1.05;
  color: #000000;
}
@media (max-width: 1024px) {
  .vocabulary-hero__title {
    font-size: 44px;
  }
}
@media (max-width: 768px) {
  .vocabulary-hero__title {
    font-size: 32px;
  }
}
.vocabulary-hero__search {
  padding-bottom: 30px;
  position: relative;
  max-width: 950px;
  width: 100%;
}
.vocabulary-hero__search input {
  width: 100%;
  height: 42px;
  padding: 12px 24px 12px 64px;
  background: #FFFFFF;
  border-radius: 42px;
  font-size: 14px;
  color: #000000;
  border: none;
}
.vocabulary-hero__search input::placeholder {
  color: #9B9B9B;
}
.vocabulary-hero__search button {
  position: absolute;
  top: 12px;
  left: 27px;
  z-index: 1;
}

.vocabulary-single {
  padding: 40px 0 96px;
}
.vocabulary-single__layout {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 96px;
  align-items: start;
}
@media (max-width: 1024px) {
  .vocabulary-single__layout {
    grid-template-columns: 1fr;
  }
}
.vocabulary-single__body {
  min-width: 0;
}
.vocabulary-single__wysiwyg {
  font-family: "Inter", sans-serif;
  font-size: 24px;
  line-height: 1.2;
  color: #000000;
}
.vocabulary-single__wysiwyg h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 1.2;
  color: #000000;
  margin-top: 40px;
  margin-bottom: 16px;
}
.vocabulary-single__wysiwyg p {
  margin-bottom: 24px;
}
.vocabulary-single__wysiwyg p:last-child {
  margin-bottom: 0;
}
.vocabulary-single__wysiwyg a {
  color: #8A3FFC;
  text-decoration: underline;
  text-decoration-color: rgba(138, 63, 252, 0.3);
  transition: text-decoration-color 0.2s ease;
}
.vocabulary-single__wysiwyg a:hover {
  text-decoration-color: #8A3FFC;
}
.vocabulary-single__related {
  padding-top: 36px;
}
.vocabulary-single__related-title {
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 24px;
}
.vocabulary-single__related-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.vocabulary-single__related-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 42px;
  background: rgba(138, 63, 252, 0.2);
  font-weight: 700;
  font-size: 14px;
}
.vocabulary-single__sidebar {
  position: sticky;
  top: 120px;
}
@media (max-width: 1024px) {
  .vocabulary-single__sidebar {
    display: none;
  }
}
.vocabulary-single__sidebar-inner {
  padding: 24px;
  max-height: calc(100vh - 140px);
  overflow-y: auto;
  scrollbar-color: #8A3FFC #CDCDCD;
  /* Chrome, Safari, Edge */
}
.vocabulary-single__sidebar-inner::-webkit-scrollbar {
  width: 8px;
}
.vocabulary-single__sidebar-inner::-webkit-scrollbar-track {
  background: #CDCDCD;
  border-radius: 999px;
}
.vocabulary-single__sidebar-inner::-webkit-scrollbar-thumb {
  background: #8A3FFC;
  border-radius: 999px;
  min-height: 30px;
}
.vocabulary-single__sidebar-inner::-webkit-scrollbar-thumb:hover {
  background: #8A3FFC;
}
.vocabulary-single__sidebar-group {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.vocabulary-single__sidebar-group:last-child {
  margin-bottom: 0;
}
.vocabulary-single__sidebar-letter {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #000000;
  margin-bottom: 6px;
  padding: 0 10px;
}
.vocabulary-single__sidebar-link {
  padding: 12px 24px;
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.65);
  border-radius: 42px;
  transition: 0.3s ease-in-out;
}
.vocabulary-single__sidebar-link:hover, .vocabulary-single__sidebar-link--active {
  color: #FFFFFF;
  background-color: #8A3FFC;
  box-shadow: -2px 4px 4px 0px rgba(255, 255, 255, 0.2509803922) inset;
}

.vocabulary-tags {
  background-color: #F1F1FF;
  padding: 40px 0;
}
.vocabulary-tags__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #000000;
  margin-bottom: 24px;
}
.vocabulary-tags__list {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
  flex-wrap: wrap;
}
.vocabulary-tags__tag {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #000000;
  background-color: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 100px;
  padding: 6px 16px;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.vocabulary-tags__tag:hover {
  border-color: #8A3FFC;
  color: #8A3FFC;
}

.vocabulary-listing {
  padding: 40px 0 96px;
}
.vocabulary-listing__group {
  margin-bottom: 40px;
  scroll-margin-top: 130px;
}
.vocabulary-listing__group:last-child {
  margin-bottom: 0;
}
.vocabulary-listing__letter {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 28px;
  color: #000000;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.12);
}
.vocabulary-listing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px 24px;
}
@media (max-width: 1024px) {
  .vocabulary-listing__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .vocabulary-listing__grid {
    grid-template-columns: 1fr;
  }
}
.vocabulary-listing__term {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  color: #000000;
  padding: 9px 0;
  transition: color 0.2s ease;
}
.vocabulary-listing__term:hover {
  color: #8A3FFC;
  cursor: pointer;
}

.service-hero-section {
  padding: 40px 0;
}
.service-hero-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}
@media (max-width: 1024px) {
  .service-hero-section__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.service-hero-section__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.service-hero-section__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 64px;
  line-height: 1;
}
@media (max-width: 1024px) {
  .service-hero-section__title {
    font-size: 52px;
  }
}
@media (max-width: 768px) {
  .service-hero-section__title {
    font-size: 38px;
  }
}
.service-hero-section__text {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.4;
  max-width: 520px;
}
.service-hero-section__stats {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 40px;
}
.service-hero-section__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.service-hero-section__stat-value {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 1;
}
.service-hero-section__stat-label {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #8A3FFC;
}
.service-hero-section__media {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
@media (max-width: 1024px) {
  .service-hero-section__media {
    display: none;
  }
}
.service-hero-section__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-intro-section {
  padding: 96px 0;
}
.service-intro-section__inner {
  display: flex;
  align-items: center;
  gap: 96px;
}
@media (max-width: 1024px) {
  .service-intro-section__inner {
    gap: 40px;
    flex-direction: column;
  }
}
.service-intro-section__media {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1/1;
  max-width: 406px;
}
@media (max-width: 1024px) {
  .service-intro-section__media {
    aspect-ratio: 16/9;
  }
}
.service-intro-section__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.service-intro-section__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.service-intro-section__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 1.15;
  color: #000000;
}
@media (max-width: 1024px) {
  .service-intro-section__title {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .service-intro-section__title {
    font-size: 24px;
  }
}
.service-intro-section__text {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  line-height: 1.15;
  color: #000000;
}

.service-subservices-section {
  background: #13131B;
  padding: 111px 0;
}
@media (max-width: 1023px) {
  .service-subservices-section {
    padding: 40px 0;
  }
}
.service-subservices-section__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .service-subservices-section__header {
    flex-direction: column;
    align-items: flex-start;
  }
}
.service-subservices-section__title {
  color: #FFFFFF;
}
.service-subservices-section__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 768px) {
  .service-subservices-section__grid {
    grid-template-columns: 1fr;
  }
}
.service-subservices-section__card {
  background: rgba(64, 64, 64, 0.2);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 208px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: 0.3s ease-in-out;
  position: relative;
}
.service-subservices-section__card:nth-child(1) .service-subservices-section__arrow {
  background: rgba(140, 0, 210, 0.8);
}
.service-subservices-section__card:nth-child(1):hover {
  background: rgba(137, 2, 204, 0.9);
}
.service-subservices-section__card:nth-child(2) .service-subservices-section__arrow {
  background: rgb(83, 148, 190);
}
.service-subservices-section__card:nth-child(2):hover {
  background: rgba(83, 148, 190, 0.9);
}
.service-subservices-section__card:nth-child(3) .service-subservices-section__arrow {
  background: rgb(180, 5, 203);
}
.service-subservices-section__card:nth-child(3):hover {
  background: rgba(180, 5, 203, 0.9);
}
.service-subservices-section__card:nth-child(4) .service-subservices-section__arrow {
  background: rgb(195, 91, 234);
}
.service-subservices-section__card:nth-child(4):hover {
  background: rgba(195, 91, 234, 0.9);
}
.service-subservices-section__card:hover .service-subservices-section__arrow {
  color: #000;
  transform: rotate(45deg);
  background: rgba(255, 255, 255, 0.8) !important;
}
.service-subservices-section__card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.service-subservices-section__card-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  color: #FFFFFF;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 14px;
}
.service-subservices-section__card-badge svg {
  width: 22px;
  height: 22px;
}
.service-subservices-section__card-icon {
  position: absolute;
  top: 41px;
  left: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-subservices-section__card-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.2;
  color: #FFFFFF;
}
@media (min-width: 1024px) {
  .service-subservices-section__card-title {
    min-height: 100px;
  }
}
.service-subservices-section__card-text {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.15;
  color: #FFFFFF;
}
.service-subservices-section__arrow {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  top: 32px;
  right: 32px;
  color: #FFF;
  transition: 0.3s ease-in-out;
}
.service-subservices-section__arrow svg {
  width: 23px;
  height: 23px;
}

.service-results-section {
  padding: 96px 0;
}
.service-results-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}
@media (max-width: 1024px) {
  .service-results-section__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.service-results-section__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 40px;
}
@media (max-width: 1024px) {
  .service-results-section__title {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .service-results-section__title {
    font-size: 24px;
  }
}
.service-results-section__text {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  line-height: 1.15;
}
.service-results-section__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.service-results-section__stat {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-results-section__stat-label {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  color: #8A3FFC;
}
.service-results-section__stat-value {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 64px;
  line-height: 1;
  color: #000000;
}
@media (max-width: 1024px) {
  .service-results-section__stat-value {
    font-size: 36px;
  }
}

.text-page-section {
  padding: 96px 0;
}
@media (max-width: 768px) {
  .text-page-section {
    padding: 40px 0;
  }
}
.text-page-section__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.15;
  color: #000000;
  text-align: center;
  margin-bottom: 96px;
}
@media (max-width: 768px) {
  .text-page-section__title {
    font-size: 32px;
    margin-bottom: 40px;
  }
}
.text-page-section__content {
  max-width: 800px;
  margin: 0 auto;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(0, 0, 0, 0.85);
}
.text-page-section__content h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.2;
  color: #000000;
  margin-top: 40px;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .text-page-section__content h2 {
    font-size: 22px;
  }
}
.text-page-section__content h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
  color: #000000;
  margin-top: 40px;
  margin-bottom: 8px;
}
.text-page-section__content p {
  margin-bottom: 24px;
}
.text-page-section__content p:last-child {
  margin-bottom: 0;
}
.text-page-section__content a {
  color: #8A3FFC;
  text-decoration: underline;
  text-decoration-color: rgba(138, 63, 252, 0.3);
  transition: text-decoration-color 0.2s ease;
}
.text-page-section__content a:hover {
  text-decoration-color: #8A3FFC;
}
.text-page-section__content ul,
.text-page-section__content ol {
  padding-left: 40px;
  margin-bottom: 24px;
}
.text-page-section__content ul li,
.text-page-section__content ol li {
  margin-bottom: 6px;
}
.text-page-section__content ul li {
  list-style: disc;
}
.text-page-section__content ol li {
  list-style: decimal;
}
.text-page-section__content strong {
  font-weight: 600;
  color: #000000;
}

.vacancies-section {
  padding: 40px 0;
}
.vacancies-section__ttl {
  margin-bottom: 30px;
  text-align: center;
}
.vacancies-section__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.vacancies-section__item {
  width: 100%;
  padding: 24px;
  background: rgba(138, 63, 252, 0.2);
  border-radius: 40px;
  display: grid;
  grid-template-columns: 2fr 1fr auto;
  align-items: center;
  gap: 24px;
}
@media (max-width: 768px) {
  .vacancies-section__item {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
  }
  .vacancies-section__item .vacancies-section__description {
    grid-column: 1;
    grid-row: 2;
  }
  .vacancies-section__item .vacancies-section__link {
    grid-column: 2;
    grid-row: 1/3;
    align-self: center;
  }
}
.vacancies-section__name {
  font-size: 30px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .vacancies-section__name {
    font-size: 24px;
  }
}
.vacancies-section__description {
  font-size: 16px;
  line-height: 1.7;
  font-weight: 600;
}
.vacancies-section__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgb(138, 63, 252);
  flex-shrink: 0;
  transition: background-color 0.2s ease;
}
.vacancies-section__link:hover {
  background-color: #7606AF;
}
.vacancies-section__link svg {
  width: 14px;
  height: 14px;
}
.vacancies-section__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.vacancies-section__empty p {
  font-size: 20px;
  text-align: center;
  margin-bottom: 30px;
}

.academy-license-section {
  padding: 40px 0;
  overflow: hidden;
}
.academy-license-section__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.academy-license-section__title {
  text-align: center;
}
.academy-license-section__text {
  text-align: center;
}
.academy-license-section__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.academy-license-section__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 22px;
  background: #FFFFFF;
  border-radius: 4px;
}
.academy-license-section__logo img {
  max-width: 100%;
  height: auto;
}

.academy-courses-section {
  padding: 90px 0;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .academy-courses-section {
    padding: 40px 0;
  }
}
.academy-courses-section__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.academy-courses-section__header {
  margin-bottom: 120px;
}
.academy-courses-section__title {
  text-align: center;
  font-weight: 700;
  font-size: 64px;
  line-height: 1.2;
  margin-bottom: 48px;
}
.academy-courses-section__text {
  text-align: center;
  font-size: 20px;
}
.academy-courses-section__filters {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
  margin: 40px 0;
  border-radius: 42px;
  background: #FFF;
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.academy-courses-section__filters::-webkit-scrollbar {
  display: none;
}
@media (max-width: 768px) {
  .academy-courses-section__filters {
    gap: 6px;
  }
}
.academy-courses-section__filter {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: bold;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 42px;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}
.academy-courses-section__filter:after {
  content: "";
  width: 24px;
  height: 24px;
  background: url("../images/blog-category-nav-icon.svg") no-repeat center;
  background-size: contain;
}
.academy-courses-section__filter:hover {
  color: #8A3FFC;
}
.academy-courses-section__filter.is-active {
  background-color: #8A3FFC;
  border-color: #8A3FFC;
  color: #FFFFFF;
  box-shadow: -2px 4px 4px 0px rgba(255, 255, 255, 0.2509803922) inset;
}
.academy-courses-section__filter.is-active:after {
  background: url("../images/blog-category-nav-icon-white.svg") no-repeat center;
  background-size: contain;
}
.academy-courses-section__filter.is-active:hover {
  color: #FFFFFF;
}
.academy-courses-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1023px) {
  .academy-courses-section__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.academy-courses-section__card {
  padding: 102px 32px 32px;
  background: rgba(118, 6, 175, 0.2);
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-radius: 20px;
}
.academy-courses-section__card:nth-child(2) {
  background: rgba(194, 0, 220, 0.2);
}
.academy-courses-section__card:nth-child(3) {
  background: rgba(194, 0, 220, 0.2);
}
.academy-courses-section__card:nth-child(4) {
  background: rgba(138, 63, 252, 0.2);
}
.academy-courses-section__card:nth-child(5) {
  background: rgba(211, 96, 255, 0.2);
}
.academy-courses-section__card:nth-child(6) {
  background: rgba(118, 6, 175, 0.2);
}
.academy-courses-section__card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.academy-courses-section__card-tag {
  font-size: 12px;
  line-height: 1;
  padding: 6px 12px;
  border-radius: 42px;
  background: #FFF;
}
.academy-courses-section__card-title {
  font-weight: 700;
  font-size: 30px;
  line-height: 1.15;
}
.academy-courses-section__card-desc {
  font-weight: 600;
  font-size: 16px;
}
.academy-courses-section__cta {
  display: flex;
  justify-content: center;
  padding-top: 55px;
}
@media (max-width: 1023px) {
  .academy-courses-section__cta {
    padding-top: 24px;
  }
}

.academy-text-section {
  padding: 90px 0;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .academy-text-section {
    padding: 40px 0;
  }
}
.academy-text-section__inner {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 1023px) {
  .academy-text-section__inner {
    flex-direction: column;
  }
}
.academy-text-section__content {
  flex: 1;
}
.academy-text-section__content ul {
  list-style: disc;
  padding-left: 20px;
  font-size: 20px;
}
.academy-text-section__media {
  max-width: 600px;
}
.academy-text-section__title {
  margin-bottom: 42px;
  padding-right: 40px;
}

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