@charset "UTF-8";
@import '../../normalize.css';
:root {
  /* Colors */
  --color-primary: #113A61;
  --color-secondary: #FF6542;
  --color-bg-light: #F4F2ED;
  --color-bg-white: #FFFFFF;
  --color-text-dark: #000000;
  --color-text-medium: #595959;
  --color-text-light: #464644;
  --color-text-lighter: #8B8B8B;
  --color-bg-grey: #D9D9D9;
  --color-bg-beige: #F4F2EC;
  --color-bg-yellow: #FAEDBC;
  --color-bg-blue: #8499CA;
  --color-border: #FF6542;
  --color-bg-gray-dark: #414141;
  --color-bg-gray-light1: #EAEAEA;
  /* Typography */
  --font-primary: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-secondary: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-accent: "Bebas Neue", sans-serif;
  /* Container */
  --container-max: 1840px;
  --container-padding: 40px;
  /* Spacing */
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 40px;
  --spacing-xl: 60px;
  --spacing-xxl: 80px;
  /* Breakpoints */
  --bp-tablet: 768px;
  --bp-desktop: 1200px;
  --bp-wide: 1920px;
}

/* Example Sass mix values based on CSS variables (optional helpers) */
* {
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-primary);
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text-dark);
  background-color: var(--color-bg-light);
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

a:hover {
  opacity: 0.7;
}

.article-card:hover {
  opacity: 1;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  transition: opacity 0.3s ease;
}

button:hover {
  opacity: 0.7;
}

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: 700;
  line-height: 1.2;
}

p {
  margin: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.container {
  max-width: 95.83vmax;
  margin: 0 auto;
  padding: 2.08vmax;
}

@media (min-width: 768px) {
  .container {
    padding: 2.08vmax;
  }
}
/* Grid/base page bounds */
body {
  max-width: 1920px; /* дизайн-ширина */
  margin-left: auto;
  margin-right: auto;
  background-color: var(--color-bg-light);
}

/* ***************** DESCTOP***************** */
/* Header INDEX PAGE */
.hero {
  height: 100vh;
  padding-top: 1.04vmax;
  padding-bottom: 1.04vmax;
  position: relative;
  background-image: url("../assets/img/people_main.svg");
  background-repeat: no-repeat;
  background-position: 3vmax calc(100% - 2vmax);
  background-size: 65vmax auto;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero .hero__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  /* Left Column */
}
.hero .hero__header .hero__left {
  display: flex;
  flex-direction: column;
  gap: 0;
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.hero .hero__header .hero__left.animate-in {
  opacity: 1;
  transform: translateX(0);
}
.hero .hero__header .hero__left .hero__logo {
  margin-bottom: 1.04vmax;
  /* Logo */
}
.hero .hero__header .hero__left .hero__logo .logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.42vmax;
}
.hero .hero__header .hero__left .hero__logo .logo .logo__icon {
  width: 42vmax;
  height: auto;
  display: block;
}
.hero .hero__header .hero__left .hero__logo .logo .logo--large .logo__icon {
  width: 37.08vmax;
}
.hero .hero__header .hero__left .hero__logo .logo .logo__tagline {
  font-family: var(--font-secondary);
  font-size: 1.5vmax;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0;
  text-align: left;
}
.hero .hero__header .hero__left {
  /* Lang switcher */
}
.hero .hero__header .hero__left .hero__lang .lang-switcher {
  display: flex;
  gap: 0;
}
.hero .hero__header .hero__left .hero__lang .lang-switcher .lang-switcher__btn {
  font-family: var(--font-secondary);
  font-size: 0.73vmax;
  font-weight: 300;
  color: var(--color-text-dark);
  padding: 0.42vmax;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  border: none;
  border-radius: 50%;
  background: transparent;
  width: 1.67vmax;
  height: 1.67vmax;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.hero .hero__header .hero__left .hero__lang .lang-switcher .lang-switcher__btn:hover {
  background-color: var(--color-secondary);
  color: #FFFFFF;
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 4px 12px rgba(255, 101, 66, 0.3);
}
.hero .hero__header .hero__left .hero__lang .lang-switcher .lang-switcher__btn--active {
  border: 1px solid var(--color-text-dark);
  background-color: var(--color-bg-light);
  transform: scale(1.1);
}
.hero .hero__header .hero__left .hero__lang .lang-switcher--vertical {
  flex-direction: column;
  gap: 0.63vmax;
  border: none;
  border-radius: 0;
  padding: 0;
  background: transparent;
}
.hero .hero__header .hero__left .nav__burger-icon {
  display: none;
}
.hero .hero__header .hero__right {
  display: flex;
  flex-direction: column;
  gap: 0;
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.hero .hero__header .hero__right.animate-in {
  opacity: 1;
  transform: translateX(0);
}
.hero .hero__header .hero__right .hero__nav {
  margin-bottom: 2.08vmax;
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.hero .hero__header .hero__right .hero__nav.animate-in {
  opacity: 1;
  transform: translateX(0);
}
.hero .hero__header .hero__right .hero__title-wrapper {
  margin-bottom: 2.08vmax;
}
.hero .hero__header .hero__right {
  /* Nav */
}
.hero .hero__header .hero__right .nav {
  display: flex;
  gap: var(--spacing-md);
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.hero .hero__header .hero__right .nav.animate-in {
  opacity: 1;
  transform: translateX(0);
}
.hero .hero__header .hero__right .nav .nav--horizontal {
  flex-direction: row;
  align-items: center;
  gap: 1.75vmax;
  flex-wrap: nowrap;
}
.hero .hero__header .hero__right .nav .nav__link {
  font-family: var(--font-primary);
  font-size: 0.94vmax;
  font-weight: 700;
  color: #131313;
  line-height: 1.5;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
  white-space: nowrap;
}
.hero .hero__header .hero__right .nav .nav__link::after {
  content: "";
  position: absolute;
  bottom: -0.21vmax;
  left: 0;
  width: 0;
  height: 0.1vmax;
  background-color: #131313;
  transition: width 0.3s ease;
}
.hero .hero__header .hero__right .nav .nav__link:hover {
  color: var(--color-secondary);
  opacity: 1;
}
.hero .hero__header .hero__right .nav .nav__item:not(.nav__item--coffee) .nav__link:hover::after {
  width: 100%;
  background-color: var(--color-secondary);
}
.hero .hero__header .hero__right {
  /* Title */
}
.hero .hero__header .hero__right .hero__title-wrapper {
  margin: 0;
  padding: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.hero .hero__header .hero__right .hero__title-wrapper.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.hero .hero__header .hero__right .hero__title-wrapper .hero__title {
  font-family: var(--font-primary);
  font-size: 1.25vmax;
  line-height: 2.08vmax;
  margin: 0;
  padding: 0;
  white-space: pre-line;
  padding-left: 5.21vmax;
}
.hero .hero__header .hero__right {
  /* Research */
}
.hero .hero__header .hero__right .hero__research .research-button {
  display: inline-flex;
  flex-direction: column;
  gap: 0.21vmax;
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  padding-left: 5.21vmax;
}
.hero .hero__header .hero__right .hero__research .research-button .research-button__label {
  font-family: var(--font-primary);
  font-size: 0.63vmax;
  font-weight: 700;
  color: var(--color-text-light);
  margin: 0 0 0.31vmax 0;
}
.hero .hero__header .hero__right .hero__research .research-button .research-button__text {
  font-family: var(--font-primary);
  font-size: 1.04vmax;
  font-weight: 500;
  line-height: 1.8;
  color: var(--color-text-dark);
  margin: 0;
  text-decoration: underline;
  text-underline-offset: 0.16vmax;
  text-decoration-thickness: 0.05vmax;
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
  display: inline-block;
}
.hero .hero__header .hero__right .hero__research .research-button .research-button__text:hover {
  color: var(--color-secondary);
}
.hero {
  /* Bottom Section */
}
.hero .hero__bottom {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  width: 100%;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  margin-bottom: 1vmax;
}
.hero .hero__bottom .hero__footer {
  display: flex;
  flex-direction: column;
  gap: 0.42vmax;
}
.hero .hero__bottom .hero__footer .hero__year {
  font-family: var(--font-primary);
  font-size: 0.73vmax;
  font-weight: 400;
  line-height: 1.25vmax;
  color: #595959;
  margin: 0;
}
.hero .hero__bottom .hero__footer .hero__address {
  font-family: var(--font-primary);
  font-size: 0.73vmax;
  font-weight: 500;
  line-height: 1.04vmax;
  color: #000000;
  margin: 2.08vmax 0;
  white-space: pre-line;
}
.hero .hero__bottom .hero__footer .hero__email {
  font-family: var(--font-primary);
  font-size: 0.73vmax;
  font-weight: 500;
  line-height: 1.04vmax;
  color: #000000;
  text-decoration: underline;
  text-underline-offset: 0.1vmax;
  text-decoration-thickness: 0.05vmax;
  margin: 0 0 1.04vmax 0;
  cursor: pointer;
  transition: color 0.3s ease;
}
.hero .hero__bottom .hero__footer .hero__email:hover {
  color: #FF6542;
}
.hero .hero__bottom .hero__footer .hero__socials {
  display: flex;
  gap: 0.63vmax;
  margin-top: 0.42vmax;
}
.hero .hero__bottom .hero__footer .hero__socials .social-link {
  display: block;
  transition: opacity 0.3s ease;
}
.hero .hero__bottom .hero__footer .hero__socials .social-link .social-icon {
  height: 1.3vmax;
  width: auto;
  display: block;
  filter: brightness(0) saturate(100%) invert(23%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(95%) contrast(89%);
  transition: filter 0.3s ease;
}
.hero .hero__bottom .hero__footer .hero__socials .social-link:hover .social-icon {
  filter: brightness(0) saturate(100%) invert(45%) sepia(96%) saturate(1234%) hue-rotate(346deg) brightness(102%) contrast(101%);
}
.hero .hero__bottom.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.hero.animate-in {
  opacity: 1;
  transform: scale(1);
}

/* ***************** MOBILE***************** */
@media (max-width: 480px) {
  .hero {
    height: 100vh;
    padding-top: 1.04vmax;
    padding-bottom: 1.04vmax;
    position: relative;
    background-image: url("../assets/img/people_main.svg");
    background-repeat: no-repeat;
    background-position: -34vmax 17vmax;
    background-size: 81vmax auto;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    z-index: 1;
  }
  .hero.animate-in {
    opacity: 1;
    transform: scale(1);
  }
  .hero .hero__header {
    margin-top: 2vmax;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    /* Left Column */
  }
  .hero .hero__header .hero__left {
    display: flex;
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .hero .hero__header .hero__left.animate-in {
    opacity: 1;
    transform: translateX(0);
  }
  .hero .hero__header .hero__left .hero__logo {
    margin-bottom: 1.04vmax;
    /* Logo */
  }
  .hero .hero__header .hero__left .hero__logo .logo .logo__icon {
    width: 30vmax;
  }
  .hero .hero__header .hero__left .hero__logo .logo .logo--large .logo__icon {
    width: 30vmax;
  }
  .hero .hero__header .hero__left .hero__logo .logo .logo__tagline {
    font-size: 1.3vmax;
  }
  .hero .hero__header .hero__left {
    /* Lang switcher */
  }
  .hero .hero__header .hero__left .hero__lang {
    display: none;
  }
  .hero .hero__header .hero__left .hero__lang .lang-switcher {
    display: none;
    gap: 0;
  }
  .hero .hero__header .hero__left .hero__lang .lang-switcher .lang-switcher__btn {
    font-family: var(--font-secondary);
    font-size: 0.73vmax;
    font-weight: 300;
    color: var(--color-text-dark);
    padding: 0.42vmax;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    border: none;
    border-radius: 50%;
    background: transparent;
    width: 1.67vmax;
    height: 1.67vmax;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
  }
  .hero .hero__header .hero__left .hero__lang .lang-switcher .lang-switcher__btn:hover {
    background-color: var(--color-secondary);
    color: #FFFFFF;
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 4px 12px rgba(255, 101, 66, 0.3);
  }
  .hero .hero__header .hero__left .hero__lang .lang-switcher .lang-switcher__btn--active {
    border: 1px solid var(--color-text-dark);
    background-color: var(--color-bg-light);
    transform: scale(1.1);
  }
  .hero .hero__header .hero__left .hero__lang .lang-switcher--vertical {
    flex-direction: column;
    gap: 0.63vmax;
    border: none;
    border-radius: 0;
    padding: 0;
    background: transparent;
  }
  .hero .hero__header .hero__left .nav__burger-icon {
    display: block;
    width: 4vmax;
  }
  .hero .hero__header .hero__right {
    display: flex;
    flex-direction: column;
    gap: 0;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }
  .hero .hero__header .hero__right.animate-in {
    opacity: 1;
    transform: translateX(0);
  }
  .hero .hero__header .hero__right .hero__nav {
    margin-bottom: 2.08vmax;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }
  .hero .hero__header .hero__right .hero__nav.animate-in {
    opacity: 1;
    transform: translateX(0);
  }
  .hero .hero__header .hero__right .hero__title-wrapper {
    margin-bottom: 2.08vmax;
  }
  .hero .hero__header .hero__right {
    /* Nav */
  }
  .hero .hero__header .hero__right .nav {
    display: none;
    gap: var(--spacing-md);
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }
  .hero .hero__header .hero__right .nav.animate-in {
    opacity: 1;
    transform: translateX(0);
  }
  .hero .hero__header .hero__right .nav .nav--horizontal {
    flex-direction: row;
    align-items: center;
    gap: 1.75vmax;
    flex-wrap: nowrap;
  }
  .hero .hero__header .hero__right .nav .nav__link {
    font-family: var(--font-primary);
    font-size: 0.94vmax;
    font-weight: 700;
    color: #131313;
    line-height: 1.5;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
    white-space: nowrap;
  }
  .hero .hero__header .hero__right .nav .nav__link::after {
    content: "";
    position: absolute;
    bottom: -0.21vmax;
    left: 0;
    width: 0;
    height: 0.1vmax;
    background-color: #131313;
    transition: width 0.3s ease;
  }
  .hero .hero__header .hero__right .nav .nav__link:hover {
    color: var(--color-secondary);
    opacity: 1;
  }
  .hero .hero__header .hero__right .nav .nav__item:not(.nav__item--coffee) .nav__link:hover::after {
    width: 100%;
    background-color: var(--color-secondary);
  }
  .hero .hero__header .hero__right {
    /* Title */
  }
  .hero .hero__header .hero__right .hero__title-wrapper {
    margin-top: 39vmax;
    margin-bottom: 3vmax;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  }
  .hero .hero__header .hero__right .hero__title-wrapper.animate-in {
    opacity: 1;
    transform: translateY(0);
  }
  .hero .hero__header .hero__right .hero__title-wrapper .hero__title {
    font-size: 2.8vmax;
    line-height: 3.4vmax;
    padding-left: 0vmax;
  }
  .hero .hero__header .hero__right {
    /* Research */
  }
  .hero .hero__header .hero__right .hero__research .research-button {
    padding-left: 0vmax;
    display: flex;
    flex-direction: column;
  }
  .hero .hero__header .hero__right .hero__research .research-button .research-button__label {
    font-weight: 400;
    font-size: 1.5vmax;
    margin: 0 0 0vmax 0;
  }
  .hero .hero__header .hero__right .hero__research .research-button .research-button__text {
    font-size: 2vmax;
    line-height: 1;
    text-decoration: underline solid;
  }
  .hero .hero__header .hero__right .hero__research .research-button .research-button__text:hover {
    color: var(--color-secondary);
  }
  .hero {
    /* Bottom Section */
  }
  .hero .hero__bottom {
    display: flex;
    justify-content: start;
    align-items: flex-end;
    width: 100%;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    margin-top: 10vmax;
  }
  .hero .hero__bottom .hero__footer {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0vmax;
    justify-content: space-between;
    width: 100%;
  }
  .hero .hero__bottom .hero__footer .hero__year {
    display: none;
  }
  .hero .hero__bottom .hero__footer .hero__address {
    font-size: 1.5vmax;
    line-height: 2vmax;
    margin: 0;
  }
  .hero .hero__bottom .hero__footer .hero__email {
    font-size: 1.5vmax;
    line-height: 2vmax;
    margin: 0;
  }
  .hero .hero__bottom .hero__footer .hero__email:hover {
    color: #FF6542;
  }
  .hero .hero__bottom .hero__footer .hero__socials {
    display: flex;
    gap: 0.3vmax;
    margin-top: 0vmax;
  }
  .hero .hero__bottom .hero__footer .hero__socials .social-link {
    display: flex;
    align-items: center;
    transition: opacity 0.3s ease;
  }
  .hero .hero__bottom .hero__footer .hero__socials .social-link .social-icon {
    height: 2vmax;
    width: auto;
    display: block;
    filter: brightness(0) saturate(100%) invert(23%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(95%) contrast(89%);
    transition: filter 0.3s ease;
  }
  .hero .hero__bottom .hero__footer .hero__socials .social-link .social-link:hover .social-icon {
    filter: brightness(0) saturate(100%) invert(45%) sepia(96%) saturate(1234%) hue-rotate(346deg) brightness(102%) contrast(101%);
  }
  .hero .hero__bottom .hero__bottom.animate-in {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.mobile-menu--open {
  opacity: 1;
  visibility: visible;
}
.mobile-menu.mobile-menu--open .mobile-menu__overlay {
  opacity: 1;
}
.mobile-menu.mobile-menu--open .mobile-menu__content {
  transform: translateX(0);
}
.mobile-menu.mobile-menu--open .mobile-menu__item {
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu.mobile-menu--open .mobile-menu__item:nth-child(1) {
  transition-delay: 0.1s;
}
.mobile-menu.mobile-menu--open .mobile-menu__item:nth-child(2) {
  transition-delay: 0.15s;
}
.mobile-menu.mobile-menu--open .mobile-menu__item:nth-child(3) {
  transition-delay: 0.2s;
}
.mobile-menu.mobile-menu--open .mobile-menu__item:nth-child(4) {
  transition-delay: 0.25s;
}
.mobile-menu.mobile-menu--open .mobile-menu__item:nth-child(5) {
  transition-delay: 0.3s;
}
.mobile-menu.mobile-menu--open .mobile-menu__lang {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.35s;
}
.mobile-menu.mobile-menu--open .mobile-menu__footer {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}
.mobile-menu .mobile-menu__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu .mobile-menu__content {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 400px;
  height: 100%;
  background: #FFFFFF;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
}
.mobile-menu .mobile-menu__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #E5E5E5;
}
.mobile-menu .mobile-menu__logo-icon {
  width: 150px;
  height: auto;
}
.mobile-menu .mobile-menu__close {
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: #131313;
  transition: all 0.3s ease;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu .mobile-menu__close:hover {
  background: #F5F5F5;
  transform: rotate(90deg);
}
.mobile-menu .mobile-menu__close svg {
  width: 24px;
  height: 24px;
}
.mobile-menu .mobile-menu__nav {
  flex: 1;
  margin-bottom: 2rem;
}
.mobile-menu .mobile-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-menu .mobile-menu__item {
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu .mobile-menu__item:last-child {
  margin-bottom: 0;
}
.mobile-menu .mobile-menu__link {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-primary);
  font-size: 1.25rem;
  font-weight: 600;
  color: #131313;
  text-decoration: none;
  padding: 1rem 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}
.mobile-menu .mobile-menu__link:hover {
  color: var(--color-secondary);
  border-bottom-color: var(--color-secondary);
  transform: translateX(10px);
}
.mobile-menu .mobile-menu__link--coffee {
  background: linear-gradient(135deg, #FF6542, #FF8A65);
  color: #FFFFFF;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  border: none;
}
.mobile-menu .mobile-menu__link--coffee:hover {
  background: linear-gradient(135deg, #E55A3A, #FF7A55);
  transform: translateX(10px) scale(1.02);
  box-shadow: 0 8px 25px rgba(255, 101, 66, 0.3);
}
.mobile-menu .mobile-menu__coffee-icon {
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  padding: 4px;
}
.mobile-menu .mobile-menu__lang {
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu .mobile-menu__lang-title {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  color: #666666;
  margin-bottom: 1rem;
}
.mobile-menu .lang-switcher--mobile {
  display: flex;
  gap: 0.5rem;
}
.mobile-menu .lang-switcher--mobile .lang-switcher__btn {
  font-family: var(--font-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  color: #131313;
  padding: 0.75rem 1rem;
  border: 2px solid #E5E5E5;
  border-radius: 8px;
  background: #FFFFFF;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 50px;
}
.mobile-menu .lang-switcher--mobile .lang-switcher__btn:hover {
  border-color: var(--color-secondary);
  color: var(--color-secondary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 101, 66, 0.2);
}
.mobile-menu .lang-switcher--mobile .lang-switcher__btn--active {
  background: var(--color-secondary);
  color: #FFFFFF;
  border-color: var(--color-secondary);
}
.mobile-menu .lang-switcher--mobile .lang-switcher__btn--active:hover {
  background: #E55A3A;
  border-color: #E55A3A;
}
.mobile-menu .mobile-menu__footer {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu .mobile-menu__contact {
  margin-bottom: 1.5rem;
}
.mobile-menu .mobile-menu__email {
  font-family: var(--font-primary);
  font-size: 0.875rem;
  font-weight: 600;
  color: #131313;
  margin: 0 0 0.5rem 0;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.mobile-menu .mobile-menu__address {
  font-family: var(--font-primary);
  font-size: 0.75rem;
  font-weight: 400;
  color: #666666;
  margin: 0;
  line-height: 1.4;
}
.mobile-menu .mobile-menu__socials {
  display: flex;
  gap: 1rem;
}
.mobile-menu .mobile-menu__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #F5F5F5;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.mobile-menu .mobile-menu__social-link:hover {
  background: var(--color-secondary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 101, 66, 0.3);
}
.mobile-menu .mobile-menu__social-link:hover .mobile-menu__social-icon {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(100%) contrast(100%);
}
.mobile-menu .mobile-menu__social-icon {
  width: 20px;
  height: 20px;
  filter: brightness(0) saturate(100%) invert(23%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(95%) contrast(89%);
  transition: filter 0.3s ease;
}

/* Mobile Menu Animation Keyframes */
@keyframes slideInFromRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideInFromLeft {
  from {
    transform: translateX(-30px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideInFromBottom {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
/* Mobile Menu Responsive */
@media (max-width: 480px) {
  .mobile-menu .mobile-menu__content {
    max-width: 100%;
    padding: 1.5rem 1rem;
  }
  .mobile-menu .mobile-menu__logo-icon {
    width: 120px;
  }
  .mobile-menu .mobile-menu__link {
    font-size: 1.125rem;
  }
  .mobile-menu .mobile-menu__lang-title {
    font-size: 0.875rem;
  }
  .mobile-menu .lang-switcher--mobile .lang-switcher__btn {
    font-size: 0.75rem;
    padding: 0.625rem 0.875rem;
    min-width: 45px;
  }
}
/* Coffee Icon */
.nav__coffee-icon {
  width: 1.88vmax;
  height: 1.88vmax;
  background-color: #FFFFFF;
  border-radius: 50%;
  padding: 0.31vmax;
  transition: all 0.3s ease;
  display: block;
}

.nav__link--coffee:hover .nav__coffee-icon {
  animation: coffee-shake 0.5s ease-in-out;
}

@keyframes coffee-shake {
  0%, 100% {
    transform: translateX(0) translateY(0);
  }
  10% {
    transform: translateX(-1px) translateY(-1px);
  }
  20% {
    transform: translateX(1px) translateY(1px);
  }
  30% {
    transform: translateX(-1px) translateY(1px);
  }
  40% {
    transform: translateX(1px) translateY(-1px);
  }
  50% {
    transform: translateX(-1px) translateY(0);
  }
  60% {
    transform: translateX(1px) translateY(0);
  }
  70% {
    transform: translateX(-1px) translateY(-1px);
  }
  80% {
    transform: translateX(1px) translateY(1px);
  }
  90% {
    transform: translateX(-1px) translateY(1px);
  }
}
/* Projects Hero */
.projects-hero {
  height: 100vh;
  padding-top: 1.04vmax;
  padding-bottom: 1.04vmax;
  position: relative;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.projects-hero.animate-in {
  opacity: 1;
  transform: scale(1);
}

.projects-hero {
  position: relative;
  z-index: 1;
}

/* Projects Header */
.projects-hero__header {
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* Projects Left Column */
.projects-hero__left {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  gap: 2.08vmax;
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.projects-hero__left.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.projects-hero__logo {
  flex: 0 0 auto;
}

.projects-hero__nav {
  flex: 0 0 auto;
}

/* Burger Icon for Projects Hero - hidden on desktop */
.projects-hero__left .nav__burger-icon {
  display: none;
}

/* Burger Icon for Contacts Hero - hidden on desktop */
.contacts-hero__left .nav__burger-icon {
  display: none;
}

/* Burger Icon for Article Hero - hidden on desktop */
.article-hero__left .nav__burger-icon {
  display: none;
}

/* Burger Icon for Journal Hero - hidden on desktop */
.journal-hero__left .nav__burger-icon {
  display: none;
}

/* Projects Navigation Styles */
.projects-hero__nav .nav {
  display: flex;
  gap: var(--spacing-md);
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.projects-hero__nav .nav.animate-in {
  opacity: 1;
  transform: translateX(0);
}
.projects-hero__nav .nav .nav--horizontal {
  flex-direction: row;
  align-items: center;
  gap: 1.75vmax;
  flex-wrap: nowrap;
}
.projects-hero__nav .nav .nav__link {
  font-family: var(--font-primary);
  font-size: 0.94vmax;
  font-weight: 700;
  color: #131313;
  line-height: 1.5;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
  white-space: nowrap;
}
.projects-hero__nav .nav .nav__link::after {
  content: "";
  position: absolute;
  bottom: -0.21vmax;
  left: 0;
  width: 0;
  height: 0.1vmax;
  background-color: #131313;
  transition: width 0.3s ease;
}
.projects-hero__nav .nav .nav__link:hover {
  color: var(--color-secondary);
  opacity: 1;
}
.projects-hero__nav .nav .nav__item:not(.nav__item--coffee) .nav__link:hover::after {
  width: 100%;
  background-color: var(--color-secondary);
}

/* Projects Right Column */
.projects-hero__right {
  display: flex;
  align-items: flex-start;
  width: 100%;
  gap: 2.08vmax;
  margin-top: 2.08vmax;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.projects-hero__right.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.projects-hero__lang {
  flex: 0 0 auto;
}

/* Projects Language Switcher Styles - Same as hero__lang */
.projects-hero__lang .lang-switcher {
  display: flex;
  gap: 0;
}
.projects-hero__lang .lang-switcher .lang-switcher__btn {
  font-family: var(--font-secondary);
  font-size: 0.73vmax;
  font-weight: 300;
  color: var(--color-text-dark);
  padding: 0.42vmax;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  border: none;
  border-radius: 50%;
  background: transparent;
  width: 1.67vmax;
  height: 1.67vmax;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.projects-hero__lang .lang-switcher .lang-switcher__btn:hover {
  background-color: var(--color-secondary);
  color: #FFFFFF;
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 4px 12px rgba(255, 101, 66, 0.3);
}
.projects-hero__lang .lang-switcher .lang-switcher__btn.lang-switcher__btn--active {
  border: 1px solid var(--color-text-dark);
  background-color: var(--color-bg-light);
  transform: scale(1.1);
}
.projects-hero__lang .lang-switcher.lang-switcher--vertical {
  flex-direction: column;
  gap: 0.63vmax;
  border: none;
  border-radius: 0;
  padding: 0;
  background: transparent;
}

.projects-hero__title-wrapper {
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
}

/* Projects Title */
.projects-hero__title-wrapper {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.63vmax;
}

.projects-hero__title-wrapper.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.projects-hero__title {
  font-family: var(--font-accent);
  font-size: 7vmax;
  font-weight: 600;
  line-height: 0.79;
  color: var(--color-primary);
  margin: 0;
  padding: 0;
  text-align: right;
}

.projects-hero__subtitle {
  font-family: var(--font-secondary);
  font-size: 1.88vmax;
  font-weight: 400;
  line-height: 1;
  color: var(--color-secondary);
  margin: 0;
  padding: 0;
  text-align: right;
}

/* Small Logo for other pages */
.logo--small .logo__icon {
  width: 18.28vmax;
}

/* Projects Logo Tagline Styles */
.projects-hero__logo .logo .logo__tagline {
  font-family: var(--font-secondary);
  font-size: 1.5vmax;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0;
  text-align: left;
}

/* Desktop */
@media (min-width: 1200px) {
  .projects-hero {
    padding-top: 2.08vmax;
    padding-bottom: 2.08vmax;
    min-height: calc(100vh - 4.17vmax);
    position: relative;
  }
}
/* Wide */
@media (min-width: 1600px) {
  .projects-hero {
    gap: 3.13vmax 4.17vmax;
  }
}
/* Footer styles */
/* Footer INDEX PAGE */
.footer {
  height: 100vh;
  background-color: var(--color-text-dark);
  background-image: url("../../assets/icons/girl_footer.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 4vmax) bottom;
  background-size: 15vmax;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.1vmax solid var(--color-bg-blue);
}
.footer__container {
  width: 100%;
  max-width: var(--container-max);
  padding: 2.08vmax 4.16vmax;
  height: 100%;
  display: grid;
  grid-template-areas: "top top top" "center center center" "bottom bottom bottom";
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2vmax;
  position: relative;
}
.footer__top {
  grid-area: top;
  display: flex;
  align-items: flex-end;
  gap: 2vmax;
}
.footer__top-left {
  display: flex;
  flex-direction: column;
  gap: 0.8vmax;
}
.footer__year, .footer__address, .footer__location {
  color: var(--color-bg-white);
  font-family: var(--font-primary);
  font-size: 1vmax;
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
}
.footer__year {
  font-size: 1vmax;
  margin-bottom: 2vmax;
}
.footer__top-right {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.footer__socials {
  display: flex;
  gap: 1.6vmax;
}
.footer__social-link {
  display: inline-block;
  transition: transform 0.3s ease;
}
.footer__social-link:hover {
  transform: scale(1.05);
}
.footer__social-link:focus-visible {
  outline: 0.2vmax solid var(--color-secondary);
  outline-offset: 0.2vmax;
}
.footer__social-icon {
  width: 1.68vmax;
  height: 1.68vmax;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}
.footer__social-link:hover .footer__social-icon {
  filter: brightness(0) saturate(100%) invert(42%) sepia(93%) saturate(1352%) hue-rotate(346deg) brightness(101%) contrast(97%);
}
.footer__center {
  grid-area: center;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  gap: 2.4vmax;
}
.footer__email {
  color: var(--color-bg-white);
  font-family: var(--font-primary);
  font-size: 5.2vmax;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 1.2vmax;
  position: relative;
  transition: color 0.3s ease;
}
.footer__email::after {
  content: "";
  position: absolute;
  bottom: -0.21vmax;
  left: 0;
  width: 0;
  height: 0.1vmax;
  background-color: var(--color-bg-white);
  transition: width 0.3s ease;
}
.footer__email:hover {
  color: var(--color-secondary);
}
.footer__email:hover::after {
  width: 100%;
  background-color: var(--color-secondary);
}
.footer__email:focus-visible {
  outline: 0.2vmax solid var(--color-secondary);
  outline-offset: 0.2vmax;
}
.footer__arrow {
  width: 2.4vmax;
  height: 2.4vmax;
  stroke: currentColor;
  transition: transform 0.2s ease;
}
.footer__email:hover .footer__arrow {
  transform: translate(0.4vmax, -0.4vmax);
}
.footer__message {
  color: var(--color-bg-white);
  font-family: var(--font-primary);
  font-size: 1.4vmax;
  font-weight: 400;
  line-height: 2;
  max-width: 60vmax;
  margin: 0;
}
.footer__bottom {
  grid-area: bottom;
  display: flex;
  flex-direction: column;
  gap: 1.6vmax;
}
.footer__divider {
  width: 80%;
  height: 0.1vmax;
  background-color: var(--color-bg-white);
  opacity: 0.3;
  margin: 0;
}
.footer__links {
  display: flex;
  gap: 2.4vmax;
  flex-wrap: wrap;
}
.footer__link {
  color: var(--color-bg-white);
  font-family: var(--font-primary);
  font-size: 1.4vmax;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer__link:hover {
  color: var(--color-secondary);
}
.footer__link:focus-visible {
  outline: 0.2vmax solid var(--color-secondary);
  outline-offset: 0.2vmax;
}

/* Page Footer (for other pages) */
.page-footer {
  background-color: var(--color-text-dark);
  padding: 4.17vmax 0;
  position: relative;
}
.page-footer__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: flex;
  flex-direction: column;
  gap: 3.13vmax;
}
.page-footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2vmax;
}
.page-footer .footer_right {
  display: flex;
  gap: 2vmax;
  align-items: flex-end;
}
.page-footer__top-left {
  display: flex;
  flex-direction: column;
  gap: 0.8vmax;
}
.page-footer__year, .page-footer__address, .page-footer__location {
  color: var(--color-bg-white);
  font-family: var(--font-primary);
  font-size: 0.8vmax;
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
  width: 6vmax;
}
.page-footer__year {
  font-size: 1vmax;
  margin-bottom: 2vmax;
  color: var(--color-text-lighter);
}
.page-footer__top-right {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.page-footer__socials {
  display: flex;
  gap: 1.6vmax;
}
.page-footer__social-link {
  display: inline-block;
  transition: transform 0.3s ease;
}
.page-footer__social-link:hover {
  transform: scale(1.05);
}
.page-footer__social-link:focus-visible {
  outline: 0.2vmax solid var(--color-secondary);
  outline-offset: 0.2vmax;
}
.page-footer__social-icon {
  width: 1.68vmax;
  height: 1.68vmax;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}
.page-footer__social-link:hover .page-footer__social-icon {
  filter: brightness(0) saturate(100%) invert(42%) sepia(93%) saturate(1352%) hue-rotate(346deg) brightness(101%) contrast(97%);
}
.page-footer__center {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  gap: 2.4vmax;
}
.page-footer__email {
  color: var(--color-bg-white);
  font-family: var(--font-primary);
  font-size: 3.13vmax;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 1.2vmax;
  position: relative;
  transition: color 0.3s ease;
}
.page-footer__email::after {
  content: "";
  position: absolute;
  bottom: -0.21vmax;
  left: 0;
  width: 0;
  height: 0.1vmax;
  background-color: var(--color-bg-white);
  transition: width 0.3s ease;
}
.page-footer__email:hover {
  color: var(--color-secondary);
}
.page-footer__email:hover::after {
  width: 100%;
  background-color: var(--color-secondary);
}
.page-footer__email:focus-visible {
  outline: 0.2vmax solid var(--color-secondary);
  outline-offset: 0.2vmax;
}
.page-footer__arrow {
  width: 2.4vmax;
  height: 2.4vmax;
  stroke: currentColor;
  transition: transform 0.2s ease;
}
.page-footer__email:hover .page-footer__arrow {
  transform: translate(0.4vmax, -0.4vmax);
}
.page-footer__message {
  color: var(--color-bg-white);
  font-family: var(--font-primary);
  font-size: 1.4vmax;
  font-weight: 400;
  line-height: 2;
  max-width: 60vmax;
  margin: 0;
}
.page-footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 1.6vmax;
}
.page-footer__divider {
  width: 100%;
  height: 0.1vmax;
  background-color: var(--color-bg-white);
  opacity: 0.3;
  margin: 0;
}
.page-footer__links {
  display: flex;
  gap: 2.4vmax;
  flex-wrap: wrap;
}
.page-footer__link {
  color: var(--color-bg-white);
  font-family: var(--font-primary);
  font-size: 1.4vmax;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.2s ease;
}
.page-footer__link:hover {
  color: var(--color-secondary);
}
.page-footer__link:focus-visible {
  outline: 0.2vmax solid var(--color-secondary);
  outline-offset: 0.2vmax;
}

@media (max-width: 480px) {
  .footer {
    height: 100vh;
    background-color: var(--color-text-dark);
    background-image: url("../../assets/icons/girl_footer.svg");
    background-repeat: no-repeat;
    background-position: calc(100% - 2vmax) bottom;
    background-size: 18vmax;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0.1vmax solid var(--color-bg-blue);
  }
  .footer__container {
    width: 100%;
    max-width: var(--container-max);
    padding: 2.08vmax 4.16vmax;
    height: 100%;
    display: grid;
    grid-template-areas: "top top top" "center center center" "bottom bottom bottom";
    grid-template-rows: auto 1fr auto;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2vmax;
    position: relative;
  }
  .footer__top {
    grid-area: top;
    display: flex;
    align-items: flex-end;
    gap: 2vmax;
  }
  .footer__top-left {
    display: flex;
    flex-direction: column;
    gap: 0.8vmax;
  }
  .footer__year, .footer__address, .footer__location {
    color: var(--color-bg-white);
    font-family: var(--font-primary);
    font-size: 2vmax;
    font-weight: 400;
    line-height: 1.2;
    margin: 0;
    width: 28vmax;
  }
  .footer__year {
    font-size: 2vmax;
    margin-bottom: 2vmax;
  }
  .footer__top-right {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .footer__socials {
    display: flex;
    gap: 1.6vmax;
  }
  .footer__social-link {
    display: inline-block;
    transition: transform 0.3s ease;
  }
  .footer__social-link:hover {
    transform: scale(1.05);
  }
  .footer__social-link:focus-visible {
    outline: 0.2vmax solid var(--color-secondary);
    outline-offset: 0.2vmax;
  }
  .footer__social-icon {
    width: 3vmax;
    height: 3vmax;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
  }
  .footer__social-link:hover .footer__social-icon {
    filter: brightness(0) saturate(100%) invert(42%) sepia(93%) saturate(1352%) hue-rotate(346deg) brightness(101%) contrast(97%);
  }
  .footer__center {
    grid-area: center;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    gap: 2.4vmax;
  }
  .footer__email {
    color: var(--color-bg-white);
    font-family: var(--font-primary);
    font-size: 3.2vmax;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1.2vmax;
    position: relative;
    transition: color 0.3s ease;
    margin-top: 5vmax;
  }
  .footer__email::after {
    content: "";
    position: absolute;
    bottom: -0.21vmax;
    left: 0;
    width: 0;
    height: 0.1vmax;
    background-color: var(--color-bg-white);
    transition: width 0.3s ease;
  }
  .footer__email:hover {
    color: var(--color-secondary);
  }
  .footer__email:hover::after {
    width: 100%;
    background-color: var(--color-secondary);
  }
  .footer__email:focus-visible {
    outline: 0.2vmax solid var(--color-secondary);
    outline-offset: 0.2vmax;
  }
  .footer__arrow {
    width: 2.4vmax;
    height: 2.4vmax;
    stroke: currentColor;
    transition: transform 0.2s ease;
  }
  .footer__email:hover .footer__arrow {
    transform: translate(0.4vmax, -0.4vmax);
  }
  .footer__message {
    color: var(--color-bg-white);
    font-family: var(--font-primary);
    font-size: 2vmax;
    line-height: 3.5vmax;
    font-weight: 400;
    line-height: 2;
    max-width: 28vmax;
    margin: 0;
    margin-bottom: 20vmax;
  }
  .footer__bottom {
    grid-area: bottom;
    display: flex;
    flex-direction: column;
    gap: 1.6vmax;
  }
  .footer__divider {
    width: 80%;
    height: 0.1vmax;
    background-color: var(--color-bg-white);
    opacity: 0.3;
    margin: 0;
  }
  .footer__links {
    display: flex;
    gap: 2.4vmax;
    flex-wrap: wrap;
  }
  .footer__link {
    color: var(--color-bg-white);
    font-family: var(--font-primary);
    font-size: 1.4vmax;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  .footer__link:hover {
    color: var(--color-secondary);
  }
  .footer__link:focus-visible {
    outline: 0.2vmax solid var(--color-secondary);
    outline-offset: 0.2vmax;
  }
}
/* Button styles */
/* Form styles */
/* Home page specific styles */
/* Scroll Container */
.scroll-container {
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}
.scroll-container::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.scroll-section {
  height: 100vh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Disable scroll snap for mobile devices */
@media (max-width: 768px) {
  .scroll-container {
    scroll-snap-type: none;
    height: auto;
    overflow-y: auto;
  }
  .scroll-section {
    height: auto;
    min-height: auto;
    scroll-snap-align: none;
    scroll-snap-stop: normal;
  }
}
/* Smooth scroll indicators */
.scroll-indicator {
  position: fixed;
  right: 2vmax;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 1vmax;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.scroll-indicator.visible {
  opacity: 1;
}
.scroll-indicator .scroll-dot {
  width: 0.5vmax;
  height: 0.5vmax;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
}
.scroll-indicator .scroll-dot.active {
  background-color: #F2704B;
  transform: scale(1.5);
}
.scroll-indicator .scroll-dot:hover {
  background-color: rgba(255, 255, 255, 0.6);
  transform: scale(1.2);
}

/* About Section */
.about {
  background: linear-gradient(to right, #F8F7F4 0%, #F8F7F4 60%, #EBEBEB 60%, #EBEBEB 100%);
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 2.08vmax;
  /* Orange Circle (Background element) */
}
.about__circle {
  position: absolute;
  left: 60%;
  top: 50%;
  transform: translateY(-50%) translateX(500%);
  width: 14.97vmax;
  height: 14.97vmax;
  border-radius: 50%;
  background-color: #F2704B;
  z-index: 1;
  transition: transform 0.8s ease-out;
  left: -7.49vmax;
}
.about__circle.animate-in {
  transform: translateY(-50%) translateX(395%);
}
.about {
  /* Circle Outline (Second Half) */
}
.about__circle-outline {
  position: absolute;
  left: 60%;
  top: 50%;
  transform: translateY(-50%) translateX(-53%);
  width: 14.97vmax;
  height: 14.97vmax;
  border-radius: 50%;
  border: 0.115vmax solid #F2704B;
  background-color: transparent;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.8s ease-out;
}
.about__circle-outline.animate-in {
  opacity: 1;
}
.about {
  /* Small Circles on Arc */
}
.about__circle-dot {
  position: absolute;
  width: 1.196vmax;
  height: 1.196vmax;
  border-radius: 50%;
  background-color: #F2704B;
  z-index: 4;
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.about__circle-dot.animate-in {
  opacity: 1;
  transform: scale(1);
}
.about__circle-dot {
  /* Positioning dots on the arc */
}
.about__circle-dot--1 {
  left: calc(60% + 1.794vmax - 0.598vmax);
  top: calc(50% - 7.004vmax - 0.598vmax);
  transition-delay: 0.2s;
}
.about__circle-dot--2 {
  left: calc(60% + 5.5566467954vmax - 0.598vmax);
  top: calc(50% - 4.2637650488vmax - 0.598vmax);
  transition-delay: 0.3s;
}
.about__circle-dot--3 {
  left: calc(60% + 7.004vmax - 0.598vmax);
  top: calc(50% - 0vmax - 0.598vmax);
  transition-delay: 0.4s;
}
.about__circle-dot--4 {
  left: calc(60% + 5.5566467954vmax - 0.598vmax);
  top: calc(50% + 4.2637650488vmax - 0.598vmax);
  transition-delay: 0.5s;
}
.about__circle-dot--5 {
  left: calc(60% + 1.794vmax - 0.598vmax);
  top: calc(50% + 7.004vmax - 0.598vmax);
  transition-delay: 0.6s;
}
.about__container {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 0;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  height: 100vh;
  /* Left Content */
}
.about__container .about__left {
  background-color: #F8F7F4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  padding: 0;
}
.about__container .about__left.animate-in {
  opacity: 1;
  transform: translateX(0);
}
.about__container {
  /* Right Content */
}
.about__container .about__right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  overflow: hidden;
  z-index: 2;
  padding: 0;
  /* Research Container */
}
.about__container .about__right .about__research-container {
  background-color: #EBEBEB;
  padding: 2.08vmax 2.08vmax 2.08vmax 0;
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Research Items */
}
.about__container .about__right .about__research-container .about__research-items {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.3vmax;
  opacity: 0;
  transition: opacity 0.8s ease-out;
  width: 100%;
  padding-left: 3vmax;
  font-size: 1vmax;
}
.about__container .about__right .about__research-container .about__research-items.animate-in {
  opacity: 1;
}
.about__container .about__right .about__research-container .about__research-items .about__research-item {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  margin: 1vmax 0;
}
.about__container .about__right .about__research-container .about__research-items .about__research-item.animate-in {
  opacity: 1;
  transform: translateX(0);
}
.about__container .about__right .about__research-container .about__research-items .about__research-item--1 {
  padding-left: 0vmax;
}
.about__container .about__right .about__research-container .about__research-items .about__research-item--2 {
  padding-left: 5vmax;
}
.about__container .about__right .about__research-container .about__research-items .about__research-item--3 {
  padding-left: 8vmax;
}
.about__container .about__right .about__research-container .about__research-items .about__research-item--4 {
  padding-left: 5vmax;
}
.about__container .about__right .about__research-container .about__research-items .about__research-item--5 {
  padding-left: 0vmax;
}
.about__container .about__right .about__research-container .about__research-items .about__research-item .about__research-title {
  font-family: var(--font-primary);
  font-size: 1vmax;
  font-weight: 700;
  line-height: 1.4;
  color: #2C3E50;
  margin-bottom: 0.26vmax;
}
.about__container .about__right .about__research-container .about__research-items .about__research-item .about__research-text {
  font-family: var(--font-primary);
  font-size: 1vmax;
  font-weight: 400;
  line-height: 1.5;
  color: #2C3E50;
}
.about__title {
  font-family: var(--font-primary);
  font-size: 2.5vmax;
  font-weight: 700;
  line-height: 1.2;
  color: #2C3E50;
  margin-bottom: 4vmax;
  padding-right: 5.21vmax;
}
.about__lead {
  font-family: var(--font-primary);
  font-size: 1.4vmax;
  font-weight: 500;
  line-height: 2.5vmax;
  color: #2C3E50;
  margin: 1.5vmax 0;
  padding-right: 12.24vmax;
}
.about__text {
  font-family: var(--font-primary);
  font-size: 1.4vmax;
  font-weight: 400;
  line-height: 2.5vmax;
  color: #2C3E50;
  margin: 1.5vmax 0;
  padding-right: 12.24vmax;
}
.about__highlight {
  color: #F2704B;
  font-weight: 600;
}
.about {
  /* Hide mobile versions on desktop */
}
.about__text_mod1, .about__text_mob2 {
  display: none;
}

/* Mission Section */
.mission {
  background-color: #EBEBEB;
  height: 100vh;
  display: flex;
  position: relative;
  overflow: hidden;
  padding: 4.16vmax;
  /* Orange Arc */
}
.mission__arc {
  position: absolute;
  top: -17.08vmax;
  left: -7.08vmax;
  width: 50vmax;
  height: 50vmax;
  z-index: 10;
  opacity: 1;
}
.mission__arc.animate-in .mission__arc-circle {
  stroke-dashoffset: 0;
}
.mission__arc-svg {
  width: 100%;
  height: 100%;
}
.mission__arc-circle {
  stroke-dasharray: 283; /* Длина окружности (2 * π * 45) */
  stroke-dashoffset: 283;
  stroke-linecap: round;
  transform: rotate(-90deg); /* Поворачиваем круг так, чтобы анимация начиналась сверху */
  transform-origin: center;
  transition: stroke-dashoffset 2s ease-in-out;
}
.mission {
  /* Content */
}
.mission__content {
  display: flex;
  gap: 4.17vmax;
  width: 100%;
  height: 100%;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  /* Left Column */
}
.mission__content .mission__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.3vmax;
  align-self: flex-start;
  flex: 1;
  /* Logo */
}
.mission__content .mission__left .mission__logo {
  z-index: 3;
}
.mission__content .mission__left .mission__logo .mission__logo-icon {
  width: 12vmax;
  height: auto;
  filter: brightness(0) invert(1); /* Белый цвет */
}
.mission__content {
  /* Right Column */
}
.mission__content .mission__right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: flex-end;
  gap: 2vmax;
  flex: 1;
  /* Circles */
}
.mission__content .mission__right .mission__circles {
  display: flex;
  gap: 1.5vmax;
  align-items: center;
}
.mission__content .mission__right .mission__circles .mission__circle {
  width: 2vmax;
  height: 2vmax;
  border-radius: 50%;
  background-color: #F2704B;
  transition: all 0.3s ease;
  cursor: pointer;
}
.mission__content .mission__right .mission__circles .mission__circle--3 {
  background-color: transparent;
  border: 0.1vmax solid #F2704B;
}
.mission__content .mission__right .mission__circles .mission__circle:hover {
  transform: scale(1.2);
}
.mission__title {
  font-family: var(--font-primary);
  font-size: 2.5vmax;
  font-weight: 700;
  line-height: 1.2;
  color: #2C3E50;
  margin-bottom: 4vmax;
  padding-right: 5.21vmax;
  white-space: pre-line;
}
.mission__text {
  font-family: var(--font-primary);
  font-size: 1.2vmax;
  font-weight: 400;
  line-height: 2.5vmax;
  color: #2C3E50;
  padding-right: 2.08vmax;
}

/* What We Do Section */
.what-we-do {
  background-color: var(--color-bg-white);
}
.what-we-do__heading {
  font-family: var(--font-accent);
  font-size: 8.42vmax;
  font-weight: 400;
  line-height: 0.74;
  color: var(--color-primary);
  margin-bottom: var(--spacing-xl);
  text-align: center;
}
.what-we-do {
  /* Levels */
}
.what-we-do .levels {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.what-we-do .levels .level {
  height: 100vh;
  padding: var(--spacing-xl);
  border-radius: 8px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.what-we-do .levels .level--1 {
  background-color: var(--color-bg-beige);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2vmax;
}
.what-we-do .levels .level--1 .level__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2vmax;
  width: 100%;
}
.what-we-do .levels .level--1 .level__header {
  margin-bottom: 0;
  margin-right: 20vmax;
  align-items: flex-start;
}
.what-we-do .levels .level--1 .level__text {
  flex: 1;
  margin: 0;
}
.what-we-do .levels .level--1 .what-we-do__heading {
  width: 100%;
  text-align: center;
  margin-bottom: 0;
}
.what-we-do .levels .level--2 {
  background-color: var(--color-bg-grey);
}
.what-we-do .levels .level--2 .level__header {
  margin-bottom: 0;
  margin-right: 20vmax;
  align-items: flex-start;
}
.what-we-do .levels .level--2 .level__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2vmax;
  width: 100%;
}
.what-we-do .levels .level--2 .level__text {
  flex: 1;
  margin: 0;
}
.what-we-do .levels .level--3 {
  background-color: var(--color-bg-yellow);
}
.what-we-do .levels .level--3 .level__header {
  margin-bottom: 0;
  margin-right: 20vmax;
  align-items: flex-start;
}
.what-we-do .levels .level--3 .level__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2vmax;
  width: 100%;
}
.what-we-do .levels .level--3 .level__text {
  flex: 1;
  margin: 0;
}
.what-we-do .levels .level--4 {
  background-color: var(--color-bg-blue);
}
.what-we-do .levels .level--4 .level__number {
  color: var(--color-bg-white);
}
.what-we-do .levels .level--4 .level__title {
  color: var(--color-bg-white);
}
.what-we-do .levels .level--4 .level__text {
  color: var(--color-bg-white);
}
.what-we-do .levels .level--4 .level__header {
  margin-bottom: 0;
  margin-right: 20vmax;
  align-items: flex-start;
}
.what-we-do .levels .level--4 .level__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2vmax;
  width: 100%;
}
.what-we-do .levels .level--4 .level__text {
  flex: 1;
  margin: 0;
}
.what-we-do .levels .level__header {
  display: flex;
  align-items: center;
  gap: 1vmax;
  margin-bottom: var(--spacing-sm);
  width: 30%;
  flex-shrink: 0;
}
.what-we-do .levels .level__number {
  font-family: var(--font-secondary);
  font-size: 1.04vmax;
  font-weight: 400;
  line-height: 2.5;
  color: var(--color-text-dark);
  margin: 0;
}
.what-we-do .levels .level__title {
  font-family: var(--font-primary);
  font-size: 1.88vmax;
  font-weight: 700;
  line-height: 1.39;
  color: var(--color-text-dark);
  margin: 0;
}
.what-we-do .levels .level__text {
  font-family: var(--font-primary);
  font-size: 1.25vmax;
  font-weight: 500;
  line-height: 2.08;
  color: var(--color-text-dark);
}

/* Social Links */
.social-link {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3B3B3A;
  transition: color 0.3s ease;
}
.social-link:hover {
  color: var(--color-secondary);
  opacity: 1;
}
.social-link svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 480px) {
  /* About Section */
  .about {
    background: none;
    background-color: var(--color-bg-light);
    width: 100%;
    padding-top: 10vmax;
    height: auto;
    /* Circle Outline (Second Half) */
  }
  .about__circle-outline {
    position: absolute;
    left: 60%;
    top: 50%;
    transform: translateY(-230%) translateX(14%);
    width: 30vmax;
    height: 30vmax;
    border-radius: 50%;
    border: 0.115vmax solid #F2704B;
    background-color: #F2704B;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.8s ease-out;
  }
  .about__circle-outline.animate-in {
    opacity: 1;
  }
  .about {
    /* Small Circles on Arc */
  }
  .about__circle-dot {
    position: absolute;
    width: 3vmax;
    height: 3vmax;
    border-radius: 50%;
    background-color: #F2704B;
    z-index: 4;
    opacity: 0;
    transform: scale(0);
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .about__circle-dot.animate-in {
    opacity: 1;
    transform: scale(1);
  }
  .about__circle-dot {
    /* Positioning dots on the arc */
  }
  .about__circle-dot--1 {
    left: 2vmax;
    top: 68vmax;
    transition-delay: 0.2s;
  }
  .about__circle-dot--2 {
    left: 8vmax;
    top: 68vmax;
  }
  .about__circle-dot--3 {
    left: 14vmax;
    top: 68vmax;
  }
  .about__circle-dot--4 {
    left: 32vmax;
    top: 165vmax;
    width: 12vmax;
    height: 12vmax;
  }
  .about__circle-dot--5 {
    display: none;
  }
  .about__container {
    display: flex;
    flex-direction: column;
    grid-template-columns: 1fr;
    background-color: transparent;
    height: auto;
    /* Left Content */
  }
  .about__container .about__left {
    background-color: var(--color-bg-light);
    padding: 0vmax;
  }
  .about__container {
    /* Right Content */
  }
  .about__container .about__right {
    min-height: 40vh;
    background-color: transparent;
  }
  .about {
    /* Research Container */
  }
  .about__container .about__right .about__research-container {
    background-color: transparent !important;
  }
  .about__title {
    font-size: 3vmax;
    margin-bottom: 2vmax;
    padding-right: 0vmax;
  }
  .about__lead {
    font-size: 2vmax;
    line-height: 3.5vmax;
    margin: 1vmax 0;
    padding-right: 0vmax;
    width: 65%;
  }
  .about__text {
    display: none;
  }
  .about__text_mod1 {
    display: block;
    font-size: 2vmax;
    line-height: 3.5vmax;
    margin: 1vmax 0;
    padding-right: 0vmax;
    width: 65%;
  }
  .about__text_mob2 {
    display: block;
    font-size: 2vmax;
    line-height: 3.5vmax;
    margin-top: 10vmax;
    padding-right: 0vmax;
    width: 100%;
  }
  .about__research-container {
    padding: 0 !important;
  }
  .about__research-items {
    padding-left: 0vmax !important;
    display: flex !important;
    flex-direction: row !important;
    width: 100% !important;
    flex-wrap: wrap !important;
    justify-content: space-between !important;
  }
  .about__research-items .about__research-item {
    margin: 0.5vmax 0;
    width: 48% !important;
    background-color: #EBEBEB !important;
    border-radius: 1vmax !important;
    padding: 2vmax !important;
  }
  .about__research-items .about__research-item .about__research-title {
    font-size: 2vmax !important;
  }
  .about__research-items .about__research-item .about__research-text {
    font-size: 2vmax !important;
  }
  /* Mission Section */
  .mission {
    background-color: #EBEBEB;
    height: 100vh;
    display: flex;
    position: relative;
    overflow: hidden;
    padding: 4.16vmax;
    /* Orange Arc */
  }
  .mission__arc {
    position: absolute;
    top: -25.08vmax;
    left: -19.08vmax;
    width: 70vmax;
    height: 70vmax;
    z-index: 10;
    opacity: 1;
  }
  .mission__arc.animate-in .mission__arc-circle {
    stroke-dashoffset: 0;
  }
  .mission__arc-svg {
    width: 100%;
    height: 100%;
  }
  .mission__arc-circle {
    stroke-dasharray: 283; /* Длина окружности (2 * π * 45) */
    stroke-dashoffset: 283;
    stroke-linecap: round;
    transform: rotate(-90deg); /* Поворачиваем круг так, чтобы анимация начиналась сверху */
    transform-origin: center;
    transition: stroke-dashoffset 2s ease-in-out;
  }
  .mission {
    /* Content */
  }
  .mission__content {
    display: flex;
    flex-direction: column;
    gap: 4.17vmax;
    width: 100%;
    height: 100%;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    /* Left Column */
  }
  .mission__content .mission__left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.3vmax;
    align-self: flex-start;
    flex: none;
    /* Logo */
  }
  .mission__content .mission__left .mission__logo {
    z-index: 3;
  }
  .mission__content .mission__left .mission__logo .mission__logo-icon {
    width: 20vmax;
    height: auto;
    filter: brightness(0) invert(1); /* Белый цвет */
  }
  .mission__content {
    /* Right Column */
  }
  .mission__content .mission__right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    align-self: flex-end;
    gap: 2vmax;
    flex: 1;
    /* Circles */
  }
  .mission__content .mission__right .mission__circles {
    display: flex;
    gap: 1.5vmax;
    align-items: center;
  }
  .mission__content .mission__right .mission__circles .mission__circle {
    width: 3vmax;
    height: 3vmax;
    border-radius: 50%;
    background-color: #F2704B;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  .mission__content .mission__right .mission__circles .mission__circle--3 {
    background-color: transparent;
    border: 0.1vmax solid #F2704B;
  }
  .mission__content .mission__right .mission__circles .mission__circle:hover {
    transform: scale(1.2);
  }
  .mission__title {
    font-family: var(--font-primary);
    font-size: 3vmax;
    font-weight: 700;
    line-height: 1.2;
    color: #2C3E50;
    margin-top: 3vmax;
    margin-bottom: 4vmax;
    padding-right: 0vmax;
    white-space: pre-line;
  }
  .mission__text {
    font-family: var(--font-primary);
    font-size: 2vmax;
    font-weight: 400;
    line-height: 3.5vmax;
    color: #2C3E50;
    padding-right: 2.08vmax;
    margin-top: 15vmax;
    margin-bottom: 2vmax;
  }
  /* What We Do Section */
  .what-we-do {
    background-color: var(--color-bg-white);
  }
  .what-we-do__heading {
    font-family: var(--font-accent);
    font-size: 5vmax;
    font-weight: 400;
    line-height: 0.74;
    color: var(--color-primary);
    margin-bottom: var(--spacing-xl);
    text-align: center;
    margin-top: 8vmax;
  }
  .what-we-do {
    /* Levels */
  }
  .what-we-do .levels {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .what-we-do .levels .level {
    height: 85vh;
    padding: 0;
    border-radius: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0vmax 2.08vmax;
  }
  .what-we-do .levels .level--1 {
    background-color: var(--color-bg-beige);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 2vmax;
  }
  .what-we-do .levels .level--1 .level__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2vmax;
    width: 100%;
    margin-top: 5vmax;
  }
  .what-we-do .levels .level--1 .level__header {
    margin-bottom: 0;
    margin-right: 0vmax;
    width: 100%;
    align-items: flex-start;
  }
  .what-we-do .levels .level--1 .level__text {
    flex: 1;
    margin: 0;
  }
  .what-we-do .levels .level--1 .what-we-do__heading {
    width: 100%;
    text-align: center;
    margin-bottom: 0;
  }
  .what-we-do .levels .level--2 {
    background-color: var(--color-bg-grey);
  }
  .what-we-do .levels .level--2 .level__header {
    margin-bottom: 0;
    margin-right: 0vmax;
    width: 100%;
    align-items: flex-start;
  }
  .what-we-do .levels .level--2 .level__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2vmax;
    width: 100%;
    margin-top: 5vmax;
  }
  .what-we-do .levels .level--2 .level__text {
    flex: 1;
    margin: 0;
  }
  .what-we-do .levels .level--3 {
    background-color: var(--color-bg-yellow);
  }
  .what-we-do .levels .level--3 .level__header {
    margin-bottom: 0;
    margin-right: 0vmax;
    width: 100%;
    align-items: flex-start;
  }
  .what-we-do .levels .level--3 .level__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2vmax;
    width: 100%;
    margin-top: 5vmax;
  }
  .what-we-do .levels .level--3 .level__text {
    flex: 1;
    margin: 0;
  }
  .what-we-do .levels .level--4 {
    background-color: var(--color-bg-blue);
  }
  .what-we-do .levels .level--4 .level__number {
    color: var(--color-bg-white);
  }
  .what-we-do .levels .level--4 .level__title {
    color: var(--color-bg-white);
  }
  .what-we-do .levels .level--4 .level__text {
    color: var(--color-bg-white);
  }
  .what-we-do .levels .level--4 .level__header {
    margin-bottom: 0;
    margin-right: 0vmax;
    width: 100%;
    align-items: flex-start;
  }
  .what-we-do .levels .level--4 .level__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2vmax;
    width: 100%;
    margin-top: 5vmax;
  }
  .what-we-do .levels .level--4 .level__text {
    flex: 1;
    margin: 0;
  }
  .what-we-do .levels .level__header {
    display: flex;
    align-items: center;
    gap: 2vmax;
    margin-bottom: var(--spacing-sm);
    width: 30%;
    flex-shrink: 0;
  }
  .what-we-do .levels .level__number {
    font-family: var(--font-secondary);
    font-size: 3vmax;
    font-weight: 400;
    line-height: 4.5vmax;
    color: var(--color-text-dark);
    margin: 0;
  }
  .what-we-do .levels .level__title {
    font-family: var(--font-primary);
    font-size: 3vmax;
    font-weight: 700;
    line-height: 1.39;
    color: var(--color-text-dark);
    margin: 0;
  }
  .what-we-do .levels .level__text {
    font-family: var(--font-primary);
    font-size: 2vmax;
    font-weight: 500;
    line-height: 3.5vmax;
    color: var(--color-text-dark);
    padding-top: 5vmax;
    padding-left: 5.2vmax;
  }
}
/* Override scroll behavior for projects page */
.scroll-container {
  scroll-snap-type: none;
  scroll-behavior: smooth;
}

/* Override scroll-section height for projects page */
.projects-hero.scroll-section,
.products.scroll-section,
.page-footer.scroll-section {
  height: auto;
  min-height: auto;
  scroll-snap-align: none;
  scroll-snap-stop: normal;
}

/* Products Section */
.products {
  padding: 4.17vmax 0;
  background-color: var(--color-bg-light);
}

.products__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Product Card - New Design */
.product-card {
  display: flex;
  gap: 6.25vmax;
  margin-bottom: 6.25vmax;
  padding: 2.08vmax 0;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.product-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.product-card:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

/* Product Card Image */
.product-card__image {
  flex: 0 0 30%;
  width: 30%;
  height: 100%;
  overflow: hidden;
  border-radius: 0.63vmax;
  align-self: stretch;
}

.product-card__img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-card__img {
  transform: scale(1.05);
}

/* Product Card Content */
.product-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4.5vmax;
  min-width: 0;
  max-width: 70%;
}

/* Product Card Up Section */
.product_card_up {
  display: flex;
  flex-direction: column;
  gap: 3.75vmax;
}

/* Product Card Header */
.product_card_header {
  display: flex;
  flex-direction: column;
  gap: 0.94vmax;
}

.product-card__title {
  font-family: var(--font-primary);
  font-size: 3vmax;
  font-weight: 700;
  line-height: 1.04;
  color: #133C62;
  margin: 0;
}

.product-card__subtitle {
  font-family: var(--font-primary);
  font-size: 1.25vmax;
  font-weight: 700;
  line-height: 1;
  color: #133C62;
  margin: 0;
}

.product-card__description {
  font-family: var(--font-primary);
  font-size: 0.94vmax;
  font-weight: 500;
  line-height: 1.95;
  color: #111214;
  margin: 0;
  width: 85%;
}

/* Product Card Icons */
.product-card__icons {
  display: flex;
  justify-content: flex-start;
  margin: 0;
  width: 100%;
  max-width: 100%;
  gap: 5vmax;
}

.product-card__icon {
  display: flex;
  flex-direction: column;
  gap: 1vmax;
  flex: 1;
  min-width: 0;
  max-width: 20%;
}

.product-card__icon-img {
  width: 3vmax;
  height: 3vmax;
  object-fit: contain;
}

.icon_text {
  font-family: var(--font-primary);
  font-size: 0.8vmax;
  font-weight: 500;
  line-height: 1.69;
  color: #000000;
  margin: 0;
  width: 9vmax;
}

/* Product Card Link */
.product-card__link {
  display: flex;
  align-items: center;
  gap: 0.75vmax;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5vmax;
  font-weight: 400;
  line-height: 1;
  color: #113A61;
  text-decoration: none;
  position: relative;
  transition: color 0.2s ease;
}
.product-card__link span {
  position: relative;
}
.product-card__link span::after {
  content: "";
  position: absolute;
  bottom: -0.2vmax;
  left: 0;
  width: 0;
  height: 0.2vmax;
  background-color: #113A61;
  transition: width 0.3s ease, background-color 0.2s ease;
}
.product-card__link:hover {
  color: var(--color-secondary);
}
.product-card__link:hover span::after {
  width: 100%;
  background-color: var(--color-secondary);
}

.product-card__arrow {
  width: 1.5vmax;
  height: 1.5vmax;
  stroke: currentColor;
  transition: transform 0.2s ease, stroke 0.2s ease;
}
.product-card__link:hover .product-card__arrow {
  transform: translate(0.3vmax, -0.3vmax);
}

/* Responsive Design */
@media (max-width: 768px) {
  .product-card {
    flex-direction: column;
    gap: 3.13vmax;
  }
  .product-card__content {
    gap: 3.13vmax;
    max-width: 100%;
    width: 100%;
  }
  .product_card_up {
    gap: 2.5vmax;
  }
  .product-card__image {
    flex: none;
    width: 100%;
    max-width: 100%;
    height: 20vmax;
    align-self: flex-start;
  }
  .product-card__title {
    font-size: 2.5vmax;
  }
  .product-card__subtitle {
    font-size: 1.1vmax;
  }
  .product-card__description {
    font-size: 1.1vmax;
  }
  .product-card__icons {
    width: 100%;
    max-width: 100%;
  }
  .product-card__icon {
    flex: 1;
    min-width: 0;
    max-width: calc(33.333% - 1.33vmax);
    gap: 1.5vmax;
  }
  .product-card__icon-img {
    width: 3.5vmax;
    height: 3.5vmax;
  }
  .icon_text {
    font-size: 0.9vmax;
  }
  .product-card__link {
    font-size: 1.8vmax;
  }
}
@media (min-width: 1200px) {
  .products {
    padding: 6.25vmax 0;
  }
  .product-card {
    gap: 7.5vmax;
    margin-bottom: 8.33vmax;
  }
  .product-card__image {
    flex: 0 0 30vmax;
    height: 20.75vmax;
  }
  .product-card__content {
    gap: 5.5vmax;
  }
  .product_card_up {
    gap: 4.5vmax;
  }
  .product-card__icon {
    width: 15vmax;
  }
}
@media (min-width: 1600px) {
  .product-card {
    gap: 8.75vmax;
  }
  .product-card__image {
    flex: 0 0 35vmax;
    width: 82%;
    height: 100%;
  }
  .product-card__content {
    gap: 4vmax;
  }
  .product_card_up {
    gap: 2vmax;
  }
  .product-card__icon {
    width: 18vmax;
  }
}
/* Mobile Version */
@media (max-width: 480px) {
  /* Projects Hero Section */
  .projects-hero {
    padding: 1rem 1rem 2rem;
    min-height: auto;
  }
  .projects-hero__header {
    flex-direction: column;
    gap: 1.5rem;
  }
  .projects-hero__left {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .projects-hero__logo {
    margin-bottom: 0;
    flex: 1;
  }
  .logo--small .logo__icon {
    width: 150px;
    height: auto;
  }
  .logo__tagline {
    font-size: 0.65rem;
  }
  .projects-hero__nav {
    display: none;
  }
  .projects-hero__left .nav__burger-icon {
    display: block;
    width: 24px;
    height: 24px;
    cursor: pointer;
    margin-top: 0;
    flex-shrink: 0;
  }
  .projects-hero__right {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .projects-hero__lang {
    display: none;
  }
  .projects-hero__title-wrapper {
    width: 100%;
    align-items: flex-start;
  }
  .projects-hero__title {
    font-size: 2rem;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    text-align: left;
  }
  .projects-hero__subtitle {
    font-size: 0.875rem;
    text-align: left;
  }
  /* Products Section */
  .products {
    padding: 2rem 0;
  }
  .products__container {
    padding: 0 1rem;
  }
  .product-card {
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
    padding: 1rem 0;
  }
  .product-card__image {
    width: 100%;
    height: 200px;
    border-radius: 12px;
  }
  .product-card__img {
    height: 100%;
  }
  .product-card__content {
    max-width: 100%;
    gap: 2rem;
  }
  .product_card_up {
    gap: 1.5rem;
  }
  .product_card_header {
    gap: 0.75rem;
  }
  .product-card__title {
    font-size: 1.5rem;
    line-height: 1.2;
  }
  .product-card__subtitle {
    font-size: 0.875rem;
    line-height: 1.3;
  }
  .product-card__description {
    font-size: 0.875rem;
    line-height: 1.6;
    width: 100%;
  }
  .product-card__icons {
    flex-direction: column;
    gap: 1.5rem;
  }
  .product-card__icon {
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
    max-width: 100%;
  }
  .product-card__icon-img {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
  }
  .icon_text {
    font-size: 0.875rem;
    line-height: 1.5;
    width: auto;
  }
  .product-card__link {
    font-size: 1.125rem;
    gap: 0.5rem;
  }
  .product-card__arrow {
    width: 20px;
    height: 20px;
  }
  /* Page Footer Section */
  .page-footer {
    height: 100vh;
    background-color: var(--color-text-dark);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .page-footer__container {
    width: 100%;
    padding: 2rem 1rem;
    height: 100%;
    display: grid;
    grid-template-areas: "top" "center" "bottom";
    grid-template-rows: auto 1fr auto;
    gap: 2rem;
    position: relative;
  }
  .page-footer__top {
    grid-area: top;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 0;
  }
  .page-footer__top-left {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .page-footer__year {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--color-bg-white);
  }
  .page-footer__address {
    font-size: 0.875rem;
    color: var(--color-bg-white);
  }
  .page-footer__location {
    font-size: 0.875rem;
    color: var(--color-bg-white);
    width: 20vmax;
  }
  .page-footer__top-right {
    width: 100%;
  }
  .page-footer__socials {
    display: flex;
    gap: 1rem;
  }
  .page-footer__social-icon {
    width: 32px;
    height: 32px;
  }
  .page-footer__email {
    grid-area: center;
    color: var(--color-bg-white);
    font-size: 3vmax;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    align-self: center;
    justify-self: start;
    position: relative;
    margin-top: 2rem;
  }
  .page-footer__email::after {
    content: "";
    position: absolute;
    bottom: -0.2rem;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-bg-white);
    transition: width 0.3s ease;
  }
  .page-footer__email:hover {
    color: var(--color-secondary);
  }
  .page-footer__email:hover::after {
    width: 100%;
    background-color: var(--color-secondary);
  }
  .page-footer__arrow {
    width: 24px;
    height: 24px;
    stroke: currentColor;
  }
  .page-footer__email:hover .page-footer__arrow {
    transform: translate(0.3rem, -0.3rem);
  }
  .page-footer__bottom {
    grid-area: bottom;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 0;
  }
  .page-footer__divider {
    width: 80%;
    height: 1px;
    background-color: var(--color-bg-white);
    opacity: 0.3;
    margin: 0;
  }
  .page-footer__links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .page-footer__link {
    font-size: 0.875rem;
    color: var(--color-bg-white);
  }
  .page-footer__link:hover {
    color: var(--color-secondary);
  }
}
.contacts-hero {
  height: 100vh;
  padding-top: 1.04vmax;
  padding-bottom: 1.04vmax;
  position: relative;
  z-index: 1;
  background-color: var(--color-bg-gray-dark);
  background-image: url("../assets/icons/conatact_main.svg"), url("../assets/img/Tunnel.png");
  background-size: 28%, 100% 100%;
  background-position: 80% 85%, center;
  background-repeat: no-repeat;
  padding: 2.08vmax;
  opacity: 0;
  animation: fadeInUp 1.2s ease-out 0.3s forwards;
}
.contacts-hero .logo__icon {
  filter: brightness(0) invert(1);
}
.contacts-hero .logo__tagline {
  color: white !important;
}
.contacts-hero .nav__link {
  color: white !important;
}
.contacts-hero .nav__link:hover {
  color: var(--color-secondary) !important;
}
.contacts-hero__header {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 3.13vmax;
  opacity: 0;
  transform: translateY(2vmax);
  animation: fadeInUp 0.8s ease-out 0.6s forwards;
}
@media (min-width: 768px) {
  .contacts-hero__header {
    flex-direction: row;
    gap: 4.17vmax;
  }
}
.contacts-hero__left {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  gap: 2.08vmax;
  flex: 0 0 auto;
}
.contacts-hero__logo {
  flex: 0 0 auto;
}
.contacts-hero__nav {
  flex: 0 0 auto;
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.contacts-hero__nav.animate-in {
  opacity: 1;
  transform: translateX(0);
}
.contacts-hero__nav .nav {
  display: flex;
  gap: var(--spacing-md);
}
.contacts-hero__nav .nav.nav--horizontal {
  flex-direction: row;
  align-items: center;
  gap: 1.75vmax;
  flex-wrap: nowrap;
}
.contacts-hero__nav .nav .nav__link {
  font-family: var(--font-primary);
  font-size: 0.94vmax;
  font-weight: 700;
  color: white;
  line-height: 1.5;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
  white-space: nowrap;
}
.contacts-hero__nav .nav .nav__link::after {
  content: "";
  position: absolute;
  bottom: -0.21vmax;
  left: 0;
  width: 0;
  height: 0.1vmax;
  background-color: white;
  transition: width 0.3s ease;
}
.contacts-hero__nav .nav .nav__link:hover {
  color: var(--color-secondary);
  opacity: 1;
}
.contacts-hero__nav .nav .nav__item:not(.nav__item--coffee) .nav__link:hover::after {
  width: 100%;
  background-color: var(--color-secondary);
}
.contacts-hero__right {
  display: flex;
  align-items: flex-start;
  width: 100%;
  gap: 1.5vmax;
  margin-top: 2.08vmax;
  flex: 0 0 auto;
  opacity: 0;
  transform: translateX(3vmax);
  animation: fadeInRight 0.8s ease-out 0.9s forwards;
}
.contacts-hero__lang {
  flex: 0 0 auto;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.contacts-hero__lang.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.contacts-hero__lang .lang-switcher {
  display: flex;
  gap: 0;
}
.contacts-hero__lang .lang-switcher .lang-switcher__btn {
  font-family: var(--font-secondary);
  font-size: 0.73vmax;
  font-weight: 300;
  color: white;
  padding: 0.42vmax;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  border: none;
  border-radius: 50%;
  background: transparent;
  width: 1.67vmax;
  height: 1.67vmax;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contacts-hero__lang .lang-switcher .lang-switcher__btn:hover {
  background-color: var(--color-secondary);
  color: #FFFFFF;
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 4px 12px rgba(255, 101, 66, 0.3);
}
.contacts-hero__lang .lang-switcher .lang-switcher__btn.lang-switcher__btn--active {
  border: 1px solid white;
  background-color: rgba(255, 255, 255, 0.1);
  transform: scale(1.1);
}
.contacts-hero__lang .lang-switcher.lang-switcher--vertical {
  flex-direction: column;
  gap: 0.63vmax;
  border: none;
  border-radius: 0;
  padding: 0;
  background: transparent;
}
.contacts-hero__title-wrapper {
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
}
.contacts-hero__title {
  font-family: var(--font-accent);
  font-size: 7vmax;
  font-weight: 600;
  line-height: 0.79;
  color: var(--color-primary);
  margin: 0;
  padding: 0;
}
.contacts-hero__subtitle {
  font-family: var(--font-secondary);
  font-size: 1.88vmax;
  font-weight: 400;
  color: var(--color-text-medium);
  margin: 0;
}
.contacts-hero__content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 3.13vmax;
  width: 100%;
  margin-top: 2.08vmax;
  opacity: 0;
  transform: translateY(2vmax);
  animation: fadeInUp 0.8s ease-out 1.2s forwards;
}
.contacts-hero__contact-info {
  display: flex;
  flex-direction: column;
  gap: 4vmax;
  width: 100%;
  padding-left: 14vmax;
}
.contacts-hero__info-social-wrapper {
  display: flex;
  gap: 2vmax;
  opacity: 0;
  transform: translateY(1.5vmax);
  animation: fadeInUp 0.8s ease-out 1.5s forwards;
}
.contacts-hero__info-left {
  display: flex;
  flex-direction: column;
  gap: 0.8vmax;
}
.contacts-hero__year, .contacts-hero__address, .contacts-hero__location {
  color: var(--color-bg-white);
  font-family: var(--font-primary);
  font-size: 1vmax;
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
}
.contacts-hero__year {
  font-size: 1vmax;
  margin-bottom: 2vmax;
  font-weight: 700;
}
.contacts-hero__location {
  width: 10vmax;
}
.contacts-hero__social-section {
  display: flex;
  flex-direction: column;
  gap: 1.2vmax;
  opacity: 0;
  transform: translateX(2vmax);
  animation: fadeInRight 0.8s ease-out 2.1s forwards;
}
.contacts-hero__socials {
  display: flex;
  gap: 1.6vmax;
}
.contacts-hero__social-link {
  display: inline-block;
  transition: transform 0.3s ease;
}
.contacts-hero__social-link:hover {
  transform: scale(1.05);
}
.contacts-hero__social-link:focus-visible {
  outline: 0.2vmax solid var(--color-secondary);
  outline-offset: 0.2vmax;
}
.contacts-hero__social-icon {
  width: 1.68vmax;
  height: 1.68vmax;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}
.contacts-hero__social-link:hover .contacts-hero__social-icon {
  filter: brightness(0) saturate(100%) invert(42%) sepia(93%) saturate(1352%) hue-rotate(346deg) brightness(101%) contrast(97%);
}
.contacts-hero__center {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  gap: 2.4vmax;
  opacity: 0;
  transform: translateY(1vmax);
  animation: fadeInUp 0.8s ease-out 1.8s forwards;
}
.contacts-hero__email {
  color: var(--color-bg-white);
  font-family: var(--font-primary);
  font-size: 4.13vmax;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 1.2vmax;
  position: relative;
  transition: color 0.3s ease, border-color 0.3s ease;
  border-bottom: 0.1vmax solid var(--color-bg-white);
  padding-bottom: 0.2vmax;
}
.contacts-hero__email::after {
  content: "";
  position: absolute;
  bottom: -0.21vmax;
  left: 0;
  width: 0;
  height: 0.1vmax;
  background-color: var(--color-bg-white);
  transition: width 0.3s ease;
}
.contacts-hero__email:hover {
  color: var(--color-secondary);
  border-bottom-color: transparent;
}
.contacts-hero__email:hover::after {
  width: 100%;
  background-color: var(--color-secondary);
}
.contacts-hero__email:focus-visible {
  outline: 0.2vmax solid var(--color-secondary);
  outline-offset: 0.2vmax;
}
.contacts-hero__arrow {
  width: 2.4vmax;
  height: 2.4vmax;
  stroke: currentColor;
  transition: transform 0.2s ease;
}
.contacts-hero__email:hover .contacts-hero__arrow {
  transform: translate(0.4vmax, -0.4vmax);
}
.contacts-hero__message {
  color: var(--color-bg-white);
  font-family: var(--font-primary);
  font-size: 1.1vmax;
  font-weight: 400;
  line-height: 2;
  max-width: 35vmax;
  margin: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(2vmax);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(3vmax);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-3vmax);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
/* Mobile Version */
@media (max-width: 480px) {
  /* Contacts Hero Section */
  .contacts-hero {
    padding: 1rem;
    height: 100vh;
    background-size: 80%, 100% 100%;
    background-position: 52% 90%, center;
  }
  .contacts-hero__header {
    flex-direction: column;
    gap: 1.5rem;
  }
  .contacts-hero__left {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: row;
    gap: 1rem;
  }
  .contacts-hero__logo {
    margin-bottom: 0;
    flex: 1;
  }
  .logo--small .logo__icon {
    width: 150px;
    height: auto;
  }
  .logo__tagline {
    font-size: 0.65rem;
  }
  .contacts-hero__nav {
    display: none;
  }
  .contacts-hero__left .nav__burger-icon {
    display: block;
    width: 24px;
    height: 24px;
    cursor: pointer;
    margin-top: 0;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
  }
  .contacts-hero__right {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    margin-top: 0;
  }
  .contacts-hero__lang {
    display: none;
  }
  .contacts-hero__content-wrapper {
    margin-top: 1rem;
    gap: 2rem;
  }
  .contacts-hero__contact-info {
    padding-left: 0;
    gap: 2vmax;
  }
  .contacts-hero__center {
    gap: 1.5rem;
  }
  .contacts-hero__email {
    font-size: 1.5rem;
    gap: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .contacts-hero__arrow {
    width: 24px;
    height: 24px;
  }
  .contacts-hero__message {
    font-size: 0.875rem;
    line-height: 1.6;
    max-width: 100%;
  }
  .contacts-hero__info-social-wrapper {
    flex-direction: column;
    gap: 24vmax;
  }
  .contacts-hero__info-left {
    gap: 0.5rem;
  }
  .contacts-hero__year,
  .contacts-hero__address,
  .contacts-hero__location {
    font-size: 0.875rem;
  }
  .contacts-hero__year {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  .contacts-hero__location {
    width: auto;
  }
  .contacts-hero__social-section {
    gap: 1rem;
  }
  .contacts-hero__socials {
    gap: 1rem;
  }
  .contacts-hero__social-icon {
    width: 32px;
    height: 32px;
  }
}
/* Override scroll behavior for journal page */
.scroll-container {
  scroll-snap-type: none;
  scroll-behavior: smooth;
  height: auto;
  overflow-y: auto;
}

/* Override scroll-section height for journal page */
.journal-hero.scroll-section,
.articles.scroll-section,
.page-footer.scroll-section {
  height: auto;
  min-height: auto;
  scroll-snap-align: none;
  scroll-snap-stop: normal;
}

/* Journal Hero Header */
.journal-hero__header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  gap: 2vmax;
}

/* Journal Hero Left Column */
.journal-hero__left {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

/* Journal Hero Logo */
.journal-hero__logo .logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.42vmax;
}
.journal-hero__logo .logo .logo__icon {
  width: 19vmax;
  height: auto;
  display: block;
}
.journal-hero__logo .logo .logo--small .logo__icon {
  width: 19vmax;
}
.journal-hero__logo .logo .logo__tagline {
  font-family: var(--font-secondary);
  font-size: 1vmax;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0;
  text-align: left;
}

/* Journal Hero Navigation */
.journal-hero__nav .nav {
  display: flex;
  gap: 1.75vmax;
}
.journal-hero__nav .nav--horizontal {
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
}
.journal-hero__nav .nav__link {
  font-family: var(--font-primary);
  font-size: 0.94vmax;
  font-weight: 700;
  color: #131313;
  line-height: 1.5;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
  white-space: nowrap;
}
.journal-hero__nav .nav__link::after {
  content: "";
  position: absolute;
  bottom: -0.21vmax;
  left: 0;
  width: 0;
  height: 0.1vmax;
  background-color: #131313;
  transition: width 0.3s ease;
}
.journal-hero__nav .nav__link:hover {
  color: var(--color-secondary);
  opacity: 1;
}
.journal-hero__nav .nav__link:hover::after {
  width: 100%;
  background-color: var(--color-secondary);
}
.journal-hero__nav .nav__item--coffee .nav__link:hover::after {
  width: 0;
}

/* Journal Hero Right Wrapper */
.journal-hero__right-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

/* Journal Hero Right Column */
.journal-hero__right {
  display: flex;
  gap: 1.5vmax;
  margin-top: 2.08vmax;
  width: 30vmax;
  flex-shrink: 0;
}

/* Journal Hero Language Switcher */
.journal-hero__lang {
  align-self: flex-start;
  flex-shrink: 0;
}
.journal-hero__lang .lang-switcher {
  display: flex;
  gap: 0;
}
.journal-hero__lang .lang-switcher .lang-switcher__btn {
  font-family: var(--font-secondary);
  font-size: 0.73vmax;
  font-weight: 300;
  color: var(--color-text-dark);
  padding: 0.42vmax;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  border: none;
  border-radius: 50%;
  background: transparent;
  width: 1.67vmax;
  height: 1.67vmax;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.journal-hero__lang .lang-switcher .lang-switcher__btn:hover {
  background-color: var(--color-secondary);
  color: #FFFFFF;
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 4px 12px rgba(255, 101, 66, 0.3);
}
.journal-hero__lang .lang-switcher .lang-switcher__btn--active {
  border: 1px solid var(--color-text-dark);
  background-color: var(--color-bg-light);
  transform: scale(1.1);
}
.journal-hero__lang .lang-switcher--vertical {
  flex-direction: column;
  gap: 0.63vmax;
  border: none;
  border-radius: 0;
  padding: 0;
  background: transparent;
}

/* Journal Hero Title Wrapper */
.journal-hero__title-wrapper {
  align-self: flex-start;
  flex-shrink: 0;
}

/* People Carousel */
.people-carousel {
  display: flex;
  gap: 0.5vmax;
  flex: 1;
  margin-top: 2vmax;
  overflow: hidden;
}

/* Keyframes для автоматической анимации карточек */
@keyframes cardExpand1 {
  0%, 11% {
    width: 13.2vmax;
  }
  11%, 17% {
    width: 7.2vmax;
  }
  17%, 94% {
    width: 7.2vmax;
  }
  94%, 100% {
    width: 13.2vmax;
  }
}
@keyframes gradientFade1 {
  0%, 11% {
    opacity: 1;
  }
  11%, 17% {
    opacity: 0;
  }
  17%, 94% {
    opacity: 0;
  }
  94%, 100% {
    opacity: 1;
  }
}
@keyframes infoSlide1 {
  0%, 11% {
    opacity: 1;
    transform: translateY(0);
  }
  11%, 17% {
    opacity: 0;
    transform: translateY(0.8vmax);
  }
  17%, 94% {
    opacity: 0;
    transform: translateY(0.8vmax);
  }
  94%, 100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes cardExpand2 {
  0%, 11% {
    width: 7.2vmax;
  }
  11%, 17% {
    width: 13.2vmax;
  }
  17%, 28% {
    width: 13.2vmax;
  }
  28%, 34% {
    width: 7.2vmax;
  }
  34%, 100% {
    width: 7.2vmax;
  }
}
@keyframes gradientFade2 {
  0%, 11% {
    opacity: 0;
  }
  11%, 17% {
    opacity: 1;
  }
  17%, 28% {
    opacity: 1;
  }
  28%, 34% {
    opacity: 0;
  }
  34%, 100% {
    opacity: 0;
  }
}
@keyframes infoSlide2 {
  0%, 11% {
    opacity: 0;
    transform: translateY(0.8vmax);
  }
  11%, 17% {
    opacity: 1;
    transform: translateY(0);
  }
  17%, 28% {
    opacity: 1;
    transform: translateY(0);
  }
  28%, 34% {
    opacity: 0;
    transform: translateY(0.8vmax);
  }
  34%, 100% {
    opacity: 0;
    transform: translateY(0.8vmax);
  }
}
@keyframes cardExpand3 {
  0%, 28% {
    width: 7.2vmax;
  }
  28%, 34% {
    width: 13.2vmax;
  }
  34%, 45% {
    width: 13.2vmax;
  }
  45%, 51% {
    width: 7.2vmax;
  }
  51%, 100% {
    width: 7.2vmax;
  }
}
@keyframes gradientFade3 {
  0%, 28% {
    opacity: 0;
  }
  28%, 34% {
    opacity: 1;
  }
  34%, 45% {
    opacity: 1;
  }
  45%, 51% {
    opacity: 0;
  }
  51%, 100% {
    opacity: 0;
  }
}
@keyframes infoSlide3 {
  0%, 28% {
    opacity: 0;
    transform: translateY(0.8vmax);
  }
  28%, 34% {
    opacity: 1;
    transform: translateY(0);
  }
  34%, 45% {
    opacity: 1;
    transform: translateY(0);
  }
  45%, 51% {
    opacity: 0;
    transform: translateY(0.8vmax);
  }
  51%, 100% {
    opacity: 0;
    transform: translateY(0.8vmax);
  }
}
@keyframes cardExpand4 {
  0%, 45% {
    width: 7.2vmax;
  }
  45%, 51% {
    width: 13.2vmax;
  }
  51%, 62% {
    width: 13.2vmax;
  }
  62%, 68% {
    width: 7.2vmax;
  }
  68%, 100% {
    width: 7.2vmax;
  }
}
@keyframes gradientFade4 {
  0%, 45% {
    opacity: 0;
  }
  45%, 51% {
    opacity: 1;
  }
  51%, 62% {
    opacity: 1;
  }
  62%, 68% {
    opacity: 0;
  }
  68%, 100% {
    opacity: 0;
  }
}
@keyframes infoSlide4 {
  0%, 45% {
    opacity: 0;
    transform: translateY(0.8vmax);
  }
  45%, 51% {
    opacity: 1;
    transform: translateY(0);
  }
  51%, 62% {
    opacity: 1;
    transform: translateY(0);
  }
  62%, 68% {
    opacity: 0;
    transform: translateY(0.8vmax);
  }
  68%, 100% {
    opacity: 0;
    transform: translateY(0.8vmax);
  }
}
@keyframes cardExpand5 {
  0%, 62% {
    width: 7.2vmax;
  }
  62%, 68% {
    width: 13.2vmax;
  }
  68%, 79% {
    width: 13.2vmax;
  }
  79%, 85% {
    width: 7.2vmax;
  }
  85%, 100% {
    width: 7.2vmax;
  }
}
@keyframes gradientFade5 {
  0%, 62% {
    opacity: 0;
  }
  62%, 68% {
    opacity: 1;
  }
  68%, 79% {
    opacity: 1;
  }
  79%, 85% {
    opacity: 0;
  }
  85%, 100% {
    opacity: 0;
  }
}
@keyframes infoSlide5 {
  0%, 62% {
    opacity: 0;
    transform: translateY(0.8vmax);
  }
  62%, 68% {
    opacity: 1;
    transform: translateY(0);
  }
  68%, 79% {
    opacity: 1;
    transform: translateY(0);
  }
  79%, 85% {
    opacity: 0;
    transform: translateY(0.8vmax);
  }
  85%, 100% {
    opacity: 0;
    transform: translateY(0.8vmax);
  }
}
@keyframes cardExpand6 {
  0%, 79% {
    width: 7.2vmax;
  }
  79%, 85% {
    width: 13.2vmax;
  }
  85%, 94% {
    width: 13.2vmax;
  }
  94%, 100% {
    width: 7.2vmax;
  }
}
@keyframes gradientFade6 {
  0%, 79% {
    opacity: 0;
  }
  79%, 85% {
    opacity: 1;
  }
  85%, 94% {
    opacity: 1;
  }
  94%, 100% {
    opacity: 0;
  }
}
@keyframes infoSlide6 {
  0%, 79% {
    opacity: 0;
    transform: translateY(0.8vmax);
  }
  79%, 85% {
    opacity: 1;
    transform: translateY(0);
  }
  85%, 94% {
    opacity: 1;
    transform: translateY(0);
  }
  94%, 100% {
    opacity: 0;
    transform: translateY(0.8vmax);
  }
}
.people-carousel__card {
  position: relative;
  height: 20vmax;
  border-radius: 0.8vmax;
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  width: 7.2vmax;
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.people-carousel__card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 1;
}
.people-carousel:not(:hover) .people-carousel__card:nth-child(1) {
  animation: cardExpand1 12s ease-in-out infinite;
}
.people-carousel:not(:hover) .people-carousel__card:nth-child(1)::after {
  animation: gradientFade1 12s ease-in-out infinite;
}
.people-carousel:not(:hover) .people-carousel__card:nth-child(1) .people-carousel__info {
  animation: infoSlide1 12s ease-in-out infinite;
}
.people-carousel:not(:hover) .people-carousel__card:nth-child(2) {
  animation: cardExpand2 12s ease-in-out infinite;
}
.people-carousel:not(:hover) .people-carousel__card:nth-child(2)::after {
  animation: gradientFade2 12s ease-in-out infinite;
}
.people-carousel:not(:hover) .people-carousel__card:nth-child(2) .people-carousel__info {
  animation: infoSlide2 12s ease-in-out infinite;
}
.people-carousel:not(:hover) .people-carousel__card:nth-child(3) {
  animation: cardExpand3 12s ease-in-out infinite;
}
.people-carousel:not(:hover) .people-carousel__card:nth-child(3)::after {
  animation: gradientFade3 12s ease-in-out infinite;
}
.people-carousel:not(:hover) .people-carousel__card:nth-child(3) .people-carousel__info {
  animation: infoSlide3 12s ease-in-out infinite;
}
.people-carousel:not(:hover) .people-carousel__card:nth-child(4) {
  animation: cardExpand4 12s ease-in-out infinite;
}
.people-carousel:not(:hover) .people-carousel__card:nth-child(4)::after {
  animation: gradientFade4 12s ease-in-out infinite;
}
.people-carousel:not(:hover) .people-carousel__card:nth-child(4) .people-carousel__info {
  animation: infoSlide4 12s ease-in-out infinite;
}
.people-carousel:not(:hover) .people-carousel__card:nth-child(5) {
  animation: cardExpand5 12s ease-in-out infinite;
}
.people-carousel:not(:hover) .people-carousel__card:nth-child(5)::after {
  animation: gradientFade5 12s ease-in-out infinite;
}
.people-carousel:not(:hover) .people-carousel__card:nth-child(5) .people-carousel__info {
  animation: infoSlide5 12s ease-in-out infinite;
}
.people-carousel:not(:hover) .people-carousel__card:nth-child(6) {
  animation: cardExpand6 12s ease-in-out infinite;
}
.people-carousel:not(:hover) .people-carousel__card:nth-child(6)::after {
  animation: gradientFade6 12s ease-in-out infinite;
}
.people-carousel:not(:hover) .people-carousel__card:nth-child(6) .people-carousel__info {
  animation: infoSlide6 12s ease-in-out infinite;
}
.people-carousel__card:hover {
  animation: none;
  width: 13.2vmax;
}
.people-carousel__card:hover::after {
  animation: none;
  opacity: 1;
}
.people-carousel__card:hover .people-carousel__info {
  animation: none;
  opacity: 1;
  transform: translateY(0);
}
.people-carousel__card:focus {
  outline: none;
}

.people-carousel__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.people-carousel__card:hover .people-carousel__image {
  transform: scale(1.05);
}

.people-carousel__info {
  position: absolute;
  bottom: 1.2vmax;
  left: 1vmax;
  color: #ffffff;
  opacity: 0;
  transform: translateY(0.8vmax);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 2;
}
.people-carousel__card--active .people-carousel__info {
  opacity: 1;
  transform: translateY(0);
}

.people-carousel__name {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.4vmax;
  font-weight: 600;
  line-height: 1;
  margin: 0 0 0.3vmax 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.people-carousel__role {
  font-family: "Inter", sans-serif;
  font-size: 0.65vmax;
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* Journal Hero Title */
.journal-hero__title {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 600;
  color: #133C62;
  margin-bottom: 2vmax;
  text-align: left;
  line-height: 1;
}

.journal-hero__title--small {
  font-size: 3.5vmax; /* в два раза меньше */
  display: block;
}

.journal-hero__title--large {
  font-size: 8vmax; /* основной размер */
  display: block;
  line-height: 3vmax;
}

.journal-hero__subtitle {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 1.4vmax; /* 36px equivalent */
  line-height: 1;
  color: #133C62;
  margin: 0;
  text-align: left;
  width: 80%;
}

/* Articles Section */
.articles {
  padding: 4.17vmax 0;
  background-color: var(--color-bg-light);
}

.articles__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Articles Controls Wrapper */
.articles__controls {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4.17vmax;
}

/* Article Categories */
.articles__categories {
  text-align: left;
  flex: 1;
}

.articles__categories-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3.5vmax;
  font-weight: 600;
  color: #133C62;
  margin-bottom: 2.5vmax;
  line-height: 1;
}

.articles__category-buttons {
  display: flex;
  justify-content: flex-start;
  gap: 1.25vmax;
  flex-wrap: wrap;
}

.articles__category-btn {
  font-family: "Lato", sans-serif;
  font-size: 1vmax;
  font-weight: 500;
  color: #133C62;
  background-color: transparent;
  border: 2px solid #133C62;
  padding: 0.8vmax 1.5vmax;
  border-radius: 2.5vmax;
  cursor: pointer;
  transition: all 0.3s ease;
}
article-card__image .articles__category-btn:hover {
  color: #ffffff;
  background-color: #133C62;
}
.articles__category-btn--active {
  color: #ffffff;
  background-color: #133C62;
}

/* Articles View Toggle */
.articles__view-toggle {
  display: flex;
  gap: 0.5vmax;
  align-items: center;
}

.articles__view-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3vmax;
  height: 3vmax;
  background-color: transparent;
  border: 2px solid #133C62;
  border-radius: 0.5vmax;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #133C62;
}
.articles__view-btn:hover {
  background-color: #133C62;
  color: #ffffff;
}
.articles__view-btn--active {
  background-color: #133C62;
  color: #ffffff;
}

.articles__view-icon {
  width: 1.2vmax;
  height: 1.2vmax;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

/* Articles Grid */
.articles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5vmax;
  margin-bottom: 4.17vmax;
  transition: all 0.3s ease;
}
.articles__grid .article-card:hover {
  box-shadow: 0 1.25vmax 2.5vmax rgba(19, 60, 98, 0.15);
}
.articles__grid--list {
  display: flex;
  flex-direction: column;
  gap: 1vmax;
}
.articles__grid--list .article-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 2vmax;
  height: auto;
  min-height: 12vmax;
}
.articles__grid--list .article-card:hover {
  transform: translateX(0.5vmax);
  box-shadow: 0 0.5vmax 1.5vmax rgba(19, 60, 98, 0.1);
}
.articles__grid--list .article-card__image {
  width: 20vmax;
  height: 12vmax;
  flex-shrink: 0;
  border-radius: 0.5vmax;
  overflow: hidden;
}
.articles__grid--list .article-card__content {
  flex: 1;
  padding: 0 0 0 2vmax;
  gap: 1vmax;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.articles__grid--list .article-card__meta {
  margin-bottom: 0.5vmax;
}
.articles__grid--list .article-card__title {
  font-size: 1.2vmax;
  line-height: 1.4;
  margin-bottom: 0.5vmax;
}
.articles__grid--list .article-card__description {
  font-size: 0.8vmax;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.articles__grid--list .article-card__link {
  align-self: flex-start;
  margin-top: 0.5vmax;
}

/* Article Card - New Design Based on Figma */
.article-card {
  background-color: #ffffff;
  border-radius: 0.69vmax;
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 1;
  transform: translateY(0);
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.article-card:hover {
  opacity: 1 !important;
  transform: translateY(-0.5vmax);
  box-shadow: none;
}
.article-card:hover .article-card__image,
.article-card:hover .article-card__content,
.article-card:hover .article-card__img,
.article-card:hover .article-card__title,
.article-card:hover .article-card__description,
.article-card:hover .article-card__category,
.article-card:hover .article-card__date {
  filter: none;
  opacity: 1;
}

.article-card.hidden {
  display: none;
}

/* Article Card Image */
.article-card__image {
  width: 100%;
  height: 20vmax;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  opacity: 1;
  transition: none;
  filter: none;
}

.article-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  filter: none;
}

.article-card:hover .article-card__img {
  transform: scale(1.05);
}

.article-card:hover .article-card__image {
  opacity: 1;
  filter: none;
}

.article-card:hover .article-card__content {
  opacity: 1;
  filter: none;
}

.article-card:hover .article-card__img {
  filter: none;
}

.article-card:hover .article-card__title {
  filter: none;
}

.article-card:hover .article-card__description {
  filter: none;
}

.article-card:hover .article-card__category {
  filter: none;
}

.article-card:hover .article-card__date {
  filter: none;
}

/* Article Card Content */
.article-card__content {
  padding: 2.5vmax;
  display: flex;
  flex-direction: column;
  gap: 1.25vmax;
  flex: 1;
  opacity: 1;
  transition: none;
  filter: none;
}

/* Article Card Meta */
.article-card__meta {
  display: flex;
  align-items: center;
  gap: 0.69vmax;
}

.article-card__category {
  font-family: "Lato", sans-serif;
  font-size: 0.7vmax;
  font-weight: 700;
  color: #133C62;
  filter: none;
}

.article-card__dot {
  width: 0.4vmax;
  height: 0.4vmax;
  background-color: #133C62;
  border-radius: 50%;
}

.article-card__date {
  font-family: "Lato", sans-serif;
  font-size: 0.7vmax;
  font-weight: 500;
  color: #133C62;
  filter: none;
}

/* Article Card Title */
.article-card__title {
  font-family: "Lato", sans-serif;
  font-size: 1.5vmax;
  font-weight: 700;
  line-height: 1.5;
  color: #133C62;
  margin: 0;
  filter: none;
}

/* Article Card Description */
.article-card__description {
  font-family: "Inter", sans-serif;
  font-size: 0.84vmax;
  font-weight: 500;
  line-height: 1.94;
  color: #111214;
  margin: 0;
  flex: 1;
  filter: none;
}

/* Article Card Link */
.article-card__link {
  display: flex;
  align-items: center;
  gap: 0.5vmax;
  font-family: "Inter", sans-serif;
  font-size: 1vmax;
  font-weight: 500;
  color: #133C62;
  text-decoration: none;
  align-self: flex-start;
  transition: color 0.2s ease;
  pointer-events: none;
}
.article-card:hover .article-card__link {
  color: var(--color-secondary);
}

.article-card__arrow {
  width: 1.5vmax;
  height: 1.5vmax;
  stroke: currentColor;
  transition: transform 0.2s ease;
}
.article-card__link:hover .article-card__arrow {
  transform: translate(0.3vmax, -0.3vmax);
}

/* Responsive Design */
@media (max-width: 768px) {
  .journal-hero__right-wrapper {
    flex-direction: column;
    gap: 4vmax;
  }
  .journal-hero__right {
    width: 100%;
  }
  .people-carousel {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 1.5vmax;
    margin-top: 3vmax;
    padding-bottom: 1vmax;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #133C62 #f0f4f8;
  }
  .people-carousel::-webkit-scrollbar {
    height: 4px;
  }
  .people-carousel::-webkit-scrollbar-track {
    background: #f0f4f8;
    border-radius: 2px;
  }
  .people-carousel::-webkit-scrollbar-thumb {
    background: #133C62;
    border-radius: 2px;
  }
  .people-carousel__card {
    width: 35vmax;
    height: 45vmax;
  }
  .people-carousel__card--active {
    width: 35vmax;
  }
  .people-carousel__card:hover {
    width: 35vmax;
  }
  .people-carousel__card .people-carousel__info {
    opacity: 1;
    transform: translateY(0);
  }
  .people-carousel__card::after {
    opacity: 1;
  }
  .people-carousel__name {
    font-size: 4vmax;
    margin-bottom: 1vmax;
  }
  .people-carousel__role {
    font-size: 2.2vmax;
  }
  /* Articles responsive */
  .articles__controls {
    flex-direction: column;
    align-items: flex-start;
    gap: 3vmax;
  }
  .articles__categories {
    width: 100%;
  }
  .articles__categories-title {
    font-size: 4vmax;
    margin-bottom: 3vmax;
  }
  .articles__category-buttons {
    gap: 1vmax;
    justify-content: center;
  }
  .articles__category-btn {
    font-size: 1.2vmax;
    padding: 1vmax 2vmax;
  }
  .articles__view-toggle {
    align-self: flex-end;
    gap: 1vmax;
  }
  .articles__view-btn {
    width: 4vmax;
    height: 4vmax;
  }
  .articles__view-icon {
    width: 1.8vmax;
    height: 1.8vmax;
  }
  .articles__grid {
    grid-template-columns: 1fr;
    gap: 3vmax;
  }
  .articles__grid--list .article-card {
    flex-direction: column;
    padding: 3vmax;
    min-height: auto;
    text-align: center;
  }
  .articles__grid--list .article-card:hover {
    transform: translateY(-0.5vmax);
  }
  .articles__grid--list .article-card__image {
    width: 100%;
    height: 25vmax;
    margin-bottom: 2vmax;
  }
  .articles__grid--list .article-card__content {
    padding: 0;
    text-align: left;
  }
  .articles__grid--list .article-card__title {
    font-size: 2vmax;
    margin-bottom: 1vmax;
  }
  .articles__grid--list .article-card__description {
    font-size: 1.2vmax;
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }
  .article-card__image {
    height: 25vmax;
  }
  .article-card__content {
    padding: 3vmax;
    gap: 2vmax;
  }
  .article-card__title {
    font-size: 2vmax;
  }
  .article-card__description {
    font-size: 1.2vmax;
  }
  .article-card__category,
  .article-card__date {
    font-size: 1.2vmax;
  }
  .article-card__link {
    font-size: 1.2vmax;
  }
}
@media (min-width: 1200px) {
  /* Articles */
  .articles {
    padding: 6.25vmax 0;
  }
  .article-card {
    margin-bottom: 1.33vmax;
  }
  .article-card__image {
    height: 25vmax;
  }
}
@media (min-width: 1600px) {
  /* Articles */
  .article-card__image {
    height: 40%;
  }
  .article-card__content {
    height: 60%;
  }
}
/* Mobile Version */
@media (max-width: 480px) {
  /* Journal Hero Section */
  .journal-hero {
    padding: 1rem 1rem 2rem;
    min-height: auto;
  }
  .journal-hero__header {
    flex-direction: column;
    gap: 1.5rem;
  }
  .journal-hero__left {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .journal-hero__logo {
    margin-bottom: 0;
    flex: 1;
  }
  .logo--small .logo__icon {
    width: 150px;
    height: auto;
  }
  .logo__tagline {
    font-size: 0.65rem;
  }
  .journal-hero__nav {
    display: none;
  }
  .journal-hero__left .nav__burger-icon {
    display: block;
    width: 24px;
    height: 24px;
    cursor: pointer;
    margin-top: 0;
    flex-shrink: 0;
  }
  .journal-hero__right-wrapper {
    width: 100%;
    flex-direction: column;
    gap: 1.5rem;
  }
  .journal-hero__right {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin-top: 0;
  }
  .journal-hero__lang {
    display: none;
  }
  .journal-hero__title-wrapper {
    width: 100%;
    align-items: flex-start;
    gap: 0vmax;
  }
  .journal-hero__title {
    margin-bottom: 1rem;
    line-height: 1.1;
    text-align: left;
  }
  .journal-hero__title--small {
    font-size: 5vmax;
    line-height: 1;
  }
  .journal-hero__title--large {
    font-size: 12vmax;
    line-height: 1;
    margin-top: -6vmax;
  }
  .journal-hero__subtitle {
    font-size: 0.875rem;
    line-height: 1.4;
    text-align: left;
    width: 100%;
  }
  /* People Carousel Mobile */
  .people-carousel {
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #133C62 #f0f4f8;
  }
  .people-carousel::-webkit-scrollbar {
    height: 4px;
  }
  .people-carousel::-webkit-scrollbar-track {
    background: #f0f4f8;
    border-radius: 2px;
  }
  .people-carousel::-webkit-scrollbar-thumb {
    background: #133C62;
    border-radius: 2px;
  }
  .people-carousel__card {
    width: 150px;
    height: 200px;
    min-width: 150px;
    animation: none !important;
  }
  .people-carousel__card::after {
    opacity: 1;
    animation: none !important;
  }
  .people-carousel__card:hover {
    width: 150px;
  }
  .people-carousel__card .people-carousel__info {
    opacity: 1;
    transform: translateY(0);
    animation: none !important;
  }
  .people-carousel__name {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
  }
  .people-carousel__role {
    font-size: 0.75rem;
  }
  /* Articles Section Mobile */
  .articles {
    padding: 2rem 0;
  }
  .articles__container {
    padding: 0 1rem;
  }
  .articles__controls {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  .articles__categories {
    width: 100%;
  }
  .articles__categories-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .articles__category-buttons {
    gap: 0.5rem;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .articles__category-btn {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
  }
  .articles__view-toggle {
    display: none;
  }
  /* Articles Grid Mobile */
  .articles__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  .articles__grid--list .article-card {
    flex-direction: column;
    padding: 1.5rem;
    min-height: auto;
  }
  .articles__grid--list .article-card:hover {
    transform: translateY(-0.5rem);
  }
  .articles__grid--list .article-card__image {
    width: 100%;
    height: 180px;
    margin-bottom: 1rem;
  }
  .articles__grid--list .article-card__content {
    padding: 0;
    text-align: left;
  }
  .articles__grid--list .article-card__title {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
  }
  .articles__grid--list .article-card__description {
    font-size: 0.875rem;
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }
  .article-card {
    border-radius: 12px;
  }
  .article-card__image {
    height: 180px;
    border-radius: 12px 12px 0 0;
  }
  .article-card__content {
    padding: 1.5rem;
    gap: 1rem;
  }
  .article-card__meta {
    gap: 0.5rem;
  }
  .article-card__category,
  .article-card__date {
    font-size: 0.625rem;
  }
  .article-card__dot {
    width: 4px;
    height: 4px;
  }
  .article-card__title {
    font-size: 1.125rem;
    line-height: 1.4;
  }
  .article-card__description {
    font-size: 0.875rem;
    line-height: 1.6;
  }
  .article-card__link {
    font-size: 0.875rem;
    gap: 0.5rem;
  }
  .article-card__arrow {
    width: 18px;
    height: 18px;
  }
  /* Page Footer Section Mobile */
  .page-footer {
    height: 100vh;
    background-color: var(--color-text-dark);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .page-footer__container {
    width: 100%;
    padding: 2rem 1rem;
    height: 100%;
    display: grid;
    grid-template-areas: "top" "center" "bottom";
    grid-template-rows: auto 1fr auto;
    gap: 2rem;
    position: relative;
  }
  .page-footer__top {
    grid-area: top;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 0;
  }
  .page-footer__top-left {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .page-footer__year {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--color-bg-white);
  }
  .page-footer__address {
    font-size: 0.875rem;
    color: var(--color-bg-white);
  }
  .page-footer__location {
    font-size: 0.875rem;
    color: var(--color-bg-white);
    width: 100%;
  }
  .page-footer__top-right {
    width: 100%;
  }
  .page-footer__socials {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
  }
  .page-footer__social-icon {
    width: 32px;
    height: 32px;
  }
  .page-footer__email {
    grid-area: center;
    color: var(--color-bg-white);
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    align-self: center;
    justify-self: start;
    position: relative;
    margin-top: 2rem;
    word-break: break-word;
  }
  .page-footer__email::after {
    content: "";
    position: absolute;
    bottom: -0.2rem;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-bg-white);
    transition: width 0.3s ease;
  }
  .page-footer__email:hover {
    color: var(--color-secondary);
  }
  .page-footer__email:hover::after {
    width: 100%;
    background-color: var(--color-secondary);
  }
  .page-footer__arrow {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    align-self: flex-start;
  }
  .page-footer__email:hover .page-footer__arrow {
    transform: translate(0.3rem, -0.3rem);
  }
  .page-footer__bottom {
    grid-area: bottom;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 0;
  }
  .page-footer__divider {
    width: 80%;
    height: 1px;
    background-color: var(--color-bg-white);
    opacity: 0.3;
    margin: 0;
  }
  .page-footer__links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .page-footer__link {
    font-size: 0.875rem;
    color: var(--color-bg-white);
  }
  .page-footer__link:hover {
    color: var(--color-secondary);
  }
}
.scroll-container {
  scroll-snap-type: none;
  scroll-behavior: smooth;
}

.article-hero.scroll-section {
  height: auto;
  min-height: auto;
  scroll-snap-align: none;
  scroll-snap-stop: normal;
}

.article-hero {
  height: 100vh;
  padding-top: 1.04vmax;
  padding-bottom: 1.04vmax;
  position: relative;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.article-hero.animate-in {
  opacity: 1;
  transform: scale(1);
}

.article-hero {
  position: relative;
  z-index: 1;
}

/* Article Header */
.article-hero__header {
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* Article Left Column */
.article-hero__left {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  gap: 2.08vmax;
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.article-hero__left.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.article-hero__logo {
  flex: 0 0 auto;
}

.article-hero__nav {
  flex: 0 0 auto;
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.article-hero__nav.animate-in {
  opacity: 1;
  transform: translateX(0);
}
.article-hero__nav .nav {
  display: flex;
  gap: var(--spacing-md);
}
.article-hero__nav .nav.nav--horizontal {
  flex-direction: row;
  align-items: center;
  gap: 1.75vmax;
  flex-wrap: nowrap;
}
.article-hero__nav .nav .nav__link {
  font-family: var(--font-primary);
  font-size: 0.94vmax;
  font-weight: 700;
  color: #131313;
  line-height: 1.5;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
  white-space: nowrap;
}
.article-hero__nav .nav .nav__link::after {
  content: "";
  position: absolute;
  bottom: -0.21vmax;
  left: 0;
  width: 0;
  height: 0.1vmax;
  background-color: #131313;
  transition: width 0.3s ease;
}
.article-hero__nav .nav .nav__link:hover {
  color: var(--color-secondary);
  opacity: 1;
}
.article-hero__nav .nav .nav__item:not(.nav__item--coffee) .nav__link:hover::after {
  width: 100%;
  background-color: var(--color-secondary);
}

/* Article Right Column */
.article-hero__right {
  display: flex;
  align-items: flex-start;
  width: 100%;
  gap: 2.08vmax;
  margin-top: 2.08vmax;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.article-hero__right.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.article-hero__lang {
  flex: 0 0 auto;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.article-hero__lang.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.article-hero__lang .lang-switcher {
  display: flex;
  gap: 0;
}
.article-hero__lang .lang-switcher .lang-switcher__btn {
  font-family: var(--font-secondary);
  font-size: 0.73vmax;
  font-weight: 300;
  color: var(--color-text-dark);
  padding: 0.42vmax;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  border: none;
  border-radius: 50%;
  background: transparent;
  width: 1.67vmax;
  height: 1.67vmax;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.article-hero__lang .lang-switcher .lang-switcher__btn:hover {
  background-color: var(--color-secondary);
  color: #FFFFFF;
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 4px 12px rgba(255, 101, 66, 0.3);
}
.article-hero__lang .lang-switcher .lang-switcher__btn.lang-switcher__btn--active {
  border: 1px solid var(--color-text-dark);
  background-color: var(--color-bg-light);
  transform: scale(1.1);
}
.article-hero__lang .lang-switcher.lang-switcher--vertical {
  flex-direction: column;
  gap: 0.63vmax;
  border: none;
  border-radius: 0;
  padding: 0;
  background: transparent;
}

.article-hero__title-wrapper {
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
}

/* Article Title */
.article-hero__title-wrapper {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.63vmax;
}

.article-hero__title-wrapper.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.article-hero__title {
  font-family: var(--font-accent);
  font-size: 7vmax;
  font-weight: 600;
  line-height: 0.79;
  color: var(--color-primary);
  margin: 0;
  padding: 0;
  text-align: right;
}

.article-hero__subtitle {
  font-family: var(--font-secondary);
  font-size: 1.88vmax;
  font-weight: 400;
  line-height: 1;
  color: var(--color-secondary);
  margin: 0;
  padding: 0;
  text-align: right;
}

/* Desktop */
@media (min-width: 1200px) {
  .article-hero {
    padding-top: 2.08vmax;
    padding-bottom: 2.08vmax;
    min-height: calc(100vh - 4.17vmax);
    position: relative;
  }
}
/* Wide */
@media (min-width: 1600px) {
  .article-hero {
    gap: 3.13vmax 4.17vmax;
  }
}
.article_header {
  display: flex;
  flex-direction: column;
  gap: 1.08vmax;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.article_header.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.header_article_main {
  display: flex;
  flex-direction: column;
  gap: 1.56vmax;
}

.article_h1 {
  font-family: var(--font-accent);
  font-size: 4vmax;
  font-weight: 700;
  line-height: 1;
  color: var(--color-primary);
  margin: 0;
  width: 80%;
}
@media (max-width: 768px) {
  .article_h1 {
    font-size: 2vmax;
  }
}

.article_info {
  display: flex;
  align-items: center;
  gap: 4.08vmax;
  font-family: var(--font-primary);
}
@media (max-width: 768px) {
  .article_info {
    flex-direction: column;
    gap: 1.04vmax;
  }
}

.time_read,
.date_article {
  display: flex;
  align-items: flex-start;
  gap: 0.52vmax;
  color: var(--color-text-medium);
  font-size: 0.94vmax;
}
@media (max-width: 768px) {
  .time_read,
  .date_article {
    font-size: 0.83vmax;
  }
}

.time_read_content,
.date_article_content {
  display: flex;
  flex-direction: column;
  gap: 0.1vmax;
}

.time_read_label,
.date_article_label {
  font-weight: 700;
  color: var(--color-primary);
  font-size: 0.83vmax;
}
@media (max-width: 768px) {
  .time_read_label,
  .date_article_label {
    font-size: 0.73vmax;
  }
}

.time_read_value,
.date_article_value {
  font-weight: 400;
  color: var(--color-text-medium);
  font-size: 0.83vmax;
}
@media (max-width: 768px) {
  .time_read_value,
  .date_article_value {
    font-size: 0.73vmax;
  }
}

.time_icon,
.date_icon {
  width: 1.17vmax;
  height: 1.17vmax;
  flex-shrink: 0;
  margin-top: 0.4vmax;
}

.article_picture {
  width: 100%;
  margin: 1.56vmax 0;
}
.article_picture .article_main_image {
  width: 100%;
  height: auto;
  border-radius: 0.52vmax;
  object-fit: cover;
}

.article_autor {
  display: flex;
  align-items: flex-start;
  gap: 1.04vmax;
  padding: 1.04vmax 0;
  font-family: var(--font-primary);
}
@media (max-width: 768px) {
  .article_autor {
    flex-direction: column;
    text-align: center;
    gap: 0.52vmax;
  }
}

.article_autor_content {
  display: flex;
  flex-direction: column;
  gap: 0.1vmax;
}

.article_autor_label {
  font-weight: 700;
  color: var(--color-primary);
  font-size: 0.83vmax;
}
@media (max-width: 768px) {
  .article_autor_label {
    font-size: 0.73vmax;
  }
}

.autor_img {
  flex-shrink: 0;
}
.autor_img .autor_photo {
  width: 3.13vmax;
  height: 3.13vmax;
  border-radius: 50%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .autor_img .autor_photo {
    width: 2.6vmax;
    height: 2.6vmax;
  }
}

.autor_name {
  font-size: 0.84vmax;
  color: var(--color-text-medium);
  margin: 0;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .autor_name {
    font-size: 0.83vmax;
  }
}

.article-text {
  padding: 3.12vmax 7.5vmax;
}
.article-text__content {
  max-width: 100%;
  font-family: "Lato", sans-serif;
}
.article-text__intro {
  font-size: 1.25vmax;
  font-weight: 400;
  color: #133C62;
  line-height: 1.5;
  margin: 0 0 2.08vmax 0;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
@media (max-width: 768px) {
  .article-text__intro {
    font-size: 1.4vmax;
  }
}
.article-text__intro.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.article-text__main {
  font-family: "La Belle Aurore", cursive;
}
.article-text__heading {
  font-family: "Lato", sans-serif;
  font-size: 1.5vmax;
  font-weight: 600;
  color: #133C62;
  margin: 0 0 1.25vmax 0;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transition-delay: 0.1s;
}
@media (max-width: 768px) {
  .article-text__heading {
    font-size: 1.4vmax;
  }
}
.article-text__heading.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.article-text__paragraph {
  font-family: "Lato", sans-serif;
  font-size: 1.25vmax;
  font-weight: 400;
  color: #133C62;
  line-height: 1.5;
  margin: 0 0 1.25vmax 0;
}
@media (max-width: 768px) {
  .article-text__paragraph {
    font-size: 1.4vmax;
  }
}
.article-text__paragraph:last-child {
  margin-bottom: 0;
}
.article-text__list {
  margin: 0 0 1.25vmax 0;
}
.article-text__list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.52vmax;
  margin-bottom: 1.4vmax;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
@media (max-width: 768px) {
  .article-text__list-item {
    gap: 0.6vmax;
    margin-bottom: 0.6vmax;
  }
}
.article-text__list-item:last-child {
  margin-bottom: 0;
}
.article-text__list-item.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.article-text__list-item:nth-child(1) {
  transition-delay: 0.2s;
}
.article-text__list-item:nth-child(2) {
  transition-delay: 0.3s;
}
.article-text__list-item:nth-child(3) {
  transition-delay: 0.4s;
}
.article-text__list-item:nth-child(4) {
  transition-delay: 0.5s;
}
.article-text__list-item:nth-child(5) {
  transition-delay: 0.6s;
}
.article-text__list-item:nth-child(6) {
  transition-delay: 0.7s;
}
.article-text__bullet {
  flex-shrink: 0;
  margin-top: 0.8vmax;
}
@media (max-width: 768px) {
  .article-text__bullet {
    margin-top: 0.8vmax;
  }
}
.article-text__list-text {
  font-family: "Lato", sans-serif;
  font-size: 1.25vmax;
  font-weight: 400;
  color: #133C62;
  line-height: 1.5;
  flex: 1;
}
@media (max-width: 768px) {
  .article-text__list-text {
    font-size: 1.4vmax;
  }
}

.article-quote {
  width: 100%;
  margin: 4vmax 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  background-color: var(--color-bg-gray-light1);
}
.article-quote__content {
  width: 65%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10vmax 0;
}
.article-quote__text {
  font-family: "Lato", sans-serif;
  font-size: 1.25vmax;
  font-weight: 400;
  color: #133C62;
  line-height: 1.8;
  margin: 0;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
@media (max-width: 768px) {
  .article-quote__text {
    font-size: 1.4vmax;
  }
}
.article-quote__text.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.article-header {
  background: var(--color-bg-white);
  border-bottom: 1px solid var(--color-bg-grey);
  padding: var(--spacing-md) 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.article-header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.article-header__logo .logo--small .logo__icon {
  width: 200px;
  height: 53px;
}
.article-header__nav .nav--horizontal {
  display: flex;
  gap: var(--spacing-lg);
}
@media (max-width: 768px) {
  .article-header__nav .nav--horizontal {
    gap: var(--spacing-md);
  }
}
.article-header__nav .nav__link {
  color: var(--color-text-dark);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s ease;
}
.article-header__nav .nav__link:hover {
  color: var(--color-secondary);
}

.article-main {
  padding: var(--spacing-xxl) 0;
  background: var(--color-bg-white);
}

.article-content {
  max-width: 800px;
  margin: 0 auto;
}
.article-content__header {
  margin-bottom: var(--spacing-xxl);
  text-align: center;
}

.article-meta {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}
.article-meta__category {
  color: var(--color-secondary);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
}
.article-meta__date {
  color: var(--color-text-lighter);
  font-size: 14px;
}

.article-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-dark);
  margin-bottom: var(--spacing-md);
}
@media (max-width: 768px) {
  .article-title {
    font-size: 32px;
  }
}

.article-subtitle {
  font-size: 20px;
  color: var(--color-text-medium);
  line-height: 1.4;
  max-width: 600px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .article-subtitle {
    font-size: 18px;
  }
}

.article-body {
  margin-bottom: var(--spacing-xxl);
}
.article-body .article-placeholder {
  padding: var(--spacing-xxl);
  background: var(--color-bg-light);
  border: 2px dashed var(--color-bg-grey);
  text-align: center;
  color: var(--color-text-lighter);
  font-style: italic;
}

.article-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-lg) 0;
  border-top: 1px solid var(--color-bg-grey);
  margin-top: var(--spacing-xxl);
}
@media (max-width: 768px) {
  .article-footer {
    flex-direction: column;
    gap: var(--spacing-md);
    align-items: flex-start;
  }
}

.article-tags {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}
.article-tags__label {
  color: var(--color-text-medium);
  font-weight: 500;
}
.article-tags__list {
  display: flex;
  gap: var(--spacing-xs);
}

.article-tag {
  background: var(--color-bg-light);
  color: var(--color-text-dark);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.article-share {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}
.article-share__label {
  color: var(--color-text-medium);
  font-weight: 500;
}
.article-share__links {
  display: flex;
  gap: var(--spacing-xs);
}
.article-share__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--color-bg-light);
  border-radius: 50%;
  transition: background-color 0.3s ease;
}
.article-share__link:hover {
  background: var(--color-secondary);
}
.article-share__icon {
  width: 20px;
  height: 20px;
}

.related-articles {
  background: var(--color-bg-light);
  padding: var(--spacing-xxl) 0;
}
.related-articles__title {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: var(--spacing-xl);
  text-align: center;
}
@media (max-width: 768px) {
  .related-articles__title {
    font-size: 24px;
  }
}
.related-articles__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}
.related-articles__placeholder {
  padding: var(--spacing-xl);
  background: var(--color-bg-white);
  border: 2px dashed var(--color-bg-grey);
  text-align: center;
  color: var(--color-text-lighter);
  font-style: italic;
  border-radius: 8px;
}

.article_photography {
  width: 100%;
  height: 40vmax;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.article_photography__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}
.article_photography__image.animate-in {
  opacity: 1;
  transform: scale(1);
}

.text_and_pict {
  padding: 5vmax 7.5vmax;
  background: transparent;
  width: 100%;
  margin: 2vmax 0;
}
.text_and_pict__content {
  display: flex;
  flex-direction: row;
  gap: 8.25vmax;
  align-items: flex-start;
  max-width: 100%;
}
@media (max-width: 768px) {
  .text_and_pict__content {
    flex-direction: column;
    gap: 2vmax;
  }
}
.text_and_pict__left {
  flex: 0 0 50vmax;
  display: flex;
  flex-direction: column;
  gap: 6.8vmax;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
@media (max-width: 768px) {
  .text_and_pict__left {
    flex: 1;
    gap: 3vmax;
  }
}
.text_and_pict__left.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.text_and_pict__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3vmax;
  font-weight: 400;
  line-height: 1.1875;
  color: #133C62;
  margin: 0;
  text-align: left;
}
@media (max-width: 768px) {
  .text_and_pict__title {
    font-size: 2.5vmax;
  }
}
.text_and_pict__text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2vmax;
}
@media (max-width: 768px) {
  .text_and_pict__text-wrapper {
    gap: 1.2vmax;
  }
}
.text_and_pict__text {
  font-family: "Lato", sans-serif;
  font-size: 1.25vmax;
  font-weight: 400;
  line-height: 1.5;
  color: #133C62;
  margin: 0;
}
@media (max-width: 768px) {
  .text_and_pict__text {
    font-size: 1.4vmax;
  }
}
.text_and_pict__right {
  flex: 1;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transition-delay: 0.2s;
}
@media (max-width: 768px) {
  .text_and_pict__right {
    width: 100%;
  }
}
.text_and_pict__right.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.text_and_pict__image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0.52vmax;
  display: block;
  margin-bottom: 2vmax;
}

.article-points {
  padding: 5vmax 7.5vmax;
  background: transparent;
  width: 100%;
  margin: 4vmax 0;
}
.article-points__content {
  max-width: 100%;
  font-family: "Lato", sans-serif;
}
.article-points__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3vmax;
  font-weight: 400;
  line-height: 1.1875;
  color: #133C62;
  margin: 0 0 5vmax 0;
  text-align: left;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  width: 60%;
}
@media (max-width: 768px) {
  .article-points__title {
    font-size: 2.5vmax;
    margin-bottom: 4vmax;
  }
}
.article-points__title.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.article-points__list {
  display: flex;
  flex-direction: column;
  gap: 4.25vmax;
}
@media (max-width: 768px) {
  .article-points__list {
    gap: 3vmax;
  }
}
.article-points__item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 5.125vmax;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
@media (max-width: 768px) {
  .article-points__item {
    flex-direction: column;
    gap: 2vmax;
  }
}
.article-points__item.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.article-points__number {
  font-family: "Bebas Neue", sans-serif;
  font-size: 4vmax;
  font-weight: 400;
  line-height: 0.671875;
  color: #133C62;
  flex-shrink: 0;
  margin-top: 1vmax;
}
@media (max-width: 768px) {
  .article-points__number {
    font-size: 3vmax;
    margin-top: 0;
  }
}
.article-points__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5vmax;
}
.article-points__subtitle {
  font-family: "Lato", sans-serif;
  font-size: 1.8vmax;
  font-weight: 600;
  line-height: 1.5;
  color: #133C62;
  margin: 0 0 0.5vmax 0;
}
@media (max-width: 768px) {
  .article-points__subtitle {
    font-size: 1.4vmax;
  }
}
.article-points__description {
  font-family: "Lato", sans-serif;
  font-size: 1.5vmax;
  font-weight: 400;
  line-height: 1.5;
  color: #133C62;
  margin: 0;
  width: 80%;
}
@media (max-width: 768px) {
  .article-points__description {
    font-size: 1.4vmax;
  }
}

.article_three_rows {
  width: 100%;
  padding: 5vmax 7.5vmax;
  background: transparent;
  margin: 4vmax 0;
}
.article_three_rows__content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  min-height: 60vmax;
}
@media (max-width: 768px) {
  .article_three_rows__content {
    flex-direction: column;
    gap: 3vmax;
    min-height: auto;
  }
}
.article_three_rows__column {
  display: flex;
  flex-direction: column;
}
.article_three_rows__column--left {
  justify-content: flex-end;
}
@media (max-width: 768px) {
  .article_three_rows__column--left {
    flex: 1;
    justify-content: flex-start;
  }
}
.article_three_rows__column--center {
  flex: 0 0 30%;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .article_three_rows__column--center {
    flex: 1;
    order: -1;
  }
}
.article_three_rows__column--right {
  flex: 0 0 30%;
  justify-content: flex-start;
}
@media (max-width: 768px) {
  .article_three_rows__column--right {
    flex: 1;
  }
}
.article_three_rows__text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2vmax;
  width: 100%;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
@media (max-width: 768px) {
  .article_three_rows__text-wrapper {
    gap: 1.5vmax;
  }
}
.article_three_rows__text {
  font-family: "Lato", sans-serif;
  font-size: 1.25vmax;
  font-weight: 400;
  line-height: 1.6;
  color: #133C62;
  margin: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .article_three_rows__text {
    font-size: 1.4vmax;
  }
}
.article_three_rows__image-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.article_three_rows__image {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 0.52vmax;
  display: block;
}

.article-footer-main {
  background: var(--color-bg-white);
  border-top: 1px solid var(--color-bg-grey);
}

.article_big_h {
  width: 100%;
  padding: 5vmax 7.5vmax;
  background: transparent;
  margin: 4vmax 0;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.article_big_h.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.article_big_h__content {
  display: flex;
  flex-direction: row;
  gap: 4vmax;
  align-items: flex-end;
  max-width: 100%;
}
@media (max-width: 768px) {
  .article_big_h__content {
    flex-direction: column;
    gap: 3vmax;
  }
}
.article_big_h__wrapper {
  flex: 0 0 30%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 2vmax;
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transition-delay: 0.2s;
  height: inherit;
  padding-bottom: 0.8vmax;
}
@media (max-width: 768px) {
  .article_big_h__wrapper {
    flex: 1;
    gap: 1.5vmax;
  }
}
.article_big_h__wrapper.animate-in {
  opacity: 1;
  transform: translateX(0);
}
.article_big_h__paragraph {
  font-family: var(--font-primary);
  font-size: 1.25vmax;
  font-weight: 400;
  line-height: 1.6;
  color: #133C62;
  margin: 0;
}
@media (max-width: 768px) {
  .article_big_h__paragraph {
    font-size: 1.4vmax;
  }
}
.article_big_h__title {
  flex: 0 0 60%;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transition-delay: 0.4s;
}
@media (max-width: 768px) {
  .article_big_h__title {
    flex: 1;
  }
}
.article_big_h__title.animate-in {
  opacity: 1;
  transform: translateX(0);
}
.article_big_h__heading {
  font-family: var(--font-accent);
  font-size: 3.9vmax;
  font-weight: 400;
  line-height: 1.3;
  color: #133C62;
  margin: 0;
  text-transform: uppercase;
  text-align: left;
}
@media (max-width: 768px) {
  .article_big_h__heading {
    font-size: 3.25vmax;
  }
}
.article_big_h__highlight {
  color: var(--color-secondary);
}

.article_schema_gray {
  width: 100%;
  padding: 4.17vmax 7.5vmax;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.article_schema_gray.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.article_schema_gray__content {
  background-color: var(--color-bg-gray-light1);
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 3.13vmax 4vmax;
  border-radius: 0.4vmax;
}
.article_schema_gray__row {
  margin-bottom: 2.08vmax;
}
.article_schema_gray__row:last-child {
  margin-bottom: 0;
}
.article_schema_gray__row--first {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transition-delay: 0.2s;
}
.article_schema_gray__row--first.animate-in {
  opacity: 1;
  transform: translateX(0);
}
.article_schema_gray__row--second {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transition-delay: 0.4s;
}
.article_schema_gray__row--second.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.article_schema_gray__row--third {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transition-delay: 0.6s;
}
.article_schema_gray__row--third.animate-in {
  opacity: 1;
  transform: scale(1);
}
.article_schema_gray__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3vmax;
  font-weight: 400;
  line-height: 1.1875;
  color: #133C62;
  margin: 0;
  text-align: left;
  width: 45%;
}
@media (max-width: 768px) {
  .article_schema_gray__title {
    font-size: 2.5vmax;
  }
}
.article_schema_gray__circle {
  width: 3vmax;
  height: 3vmax;
  background-color: var(--color-secondary);
  border-radius: 50%;
  flex: 0 0 auto;
}
.article_schema_gray__text {
  font-family: "Lato", sans-serif;
  font-size: 1.25vmax;
  font-weight: 400;
  line-height: 1.5;
  color: #133C62;
  margin: 0 0 2vmax 0;
}
.article_schema_gray__text:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .article_schema_gray__text {
    font-size: 1.4vmax;
  }
}
.article_schema_gray__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.52vmax;
}

.article_cards {
  width: 100%;
  padding: 5vmax 7.5vmax;
  background: transparent;
  margin: 4vmax 0;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.article_cards.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.article_cards__content {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 3vmax;
}
@media (max-width: 768px) {
  .article_cards__content {
    gap: 2vmax;
  }
}
.article_cards__row {
  display: flex;
  flex-direction: row;
  gap: 2.5vmax;
  justify-content: flex-start;
  align-items: stretch;
}
@media (max-width: 768px) {
  .article_cards__row {
    flex-direction: column;
    gap: 2vmax;
  }
}
.article_cards__card {
  flex: 0 0 calc(33.333% - 1.67vmax);
  background-color: var(--color-bg-gray-light1);
  padding: 2.5vmax;
  border-radius: 0.4vmax;
  display: flex;
  flex-direction: column;
  gap: 1.5vmax;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
@media (max-width: 768px) {
  .article_cards__card {
    flex: 1;
    padding: 2vmax;
    gap: 1.2vmax;
  }
}
.article_cards__card.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.article_cards__card:nth-child(1) {
  transition-delay: 0.1s;
}
.article_cards__card:nth-child(2) {
  transition-delay: 0.2s;
}
.article_cards__card:nth-child(3) {
  transition-delay: 0.3s;
}
.article_cards__title {
  font-family: var(--font-primary);
  font-size: 1.4vmax;
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-primary);
  margin: 0;
}
@media (max-width: 768px) {
  .article_cards__title {
    font-size: 1.3vmax;
  }
}
.article_cards__text {
  font-family: var(--font-primary);
  font-size: 1.1vmax;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-primary);
  margin: 0;
  flex: 1;
}
@media (max-width: 768px) {
  .article_cards__text {
    font-size: 1.2vmax;
  }
}

.article_gray_two_rows_text {
  width: 100%;
  padding: 4.17vmax 7.5vmax;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.article_gray_two_rows_text.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.article_gray_two_rows_text__content {
  background-color: var(--color-bg-gray-light1);
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 3.13vmax 4vmax;
  border-radius: 0.4vmax;
  display: flex;
  flex-direction: column;
  gap: 2.08vmax;
  position: relative;
}
.article_gray_two_rows_text__content::before {
  content: "";
  position: absolute;
  top: 4vmax;
  right: 4vmax;
  width: 15vmax;
  height: 15vmax;
  border: 0.1vmax solid var(--color-secondary);
  border-radius: 50%;
  background: transparent;
  z-index: 0;
}
.article_gray_two_rows_text__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3vmax;
  font-weight: 400;
  line-height: 1.1875;
  color: #133C62;
  margin: 0;
  text-align: left;
  width: 45%;
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transition-delay: 0.2s;
}
@media (max-width: 768px) {
  .article_gray_two_rows_text__title {
    font-size: 2.5vmax;
    width: 100%;
  }
}
.article_gray_two_rows_text__title.animate-in {
  opacity: 1;
  transform: translateX(0);
}
.article_gray_two_rows_text__columns {
  display: flex;
  justify-content: space-between;
  gap: 2.5vmax;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transition-delay: 0.4s;
}
@media (max-width: 768px) {
  .article_gray_two_rows_text__columns {
    flex-direction: column;
    gap: 2vmax;
  }
}
.article_gray_two_rows_text__columns.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.article_gray_two_rows_text__column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2vmax;
}
@media (max-width: 768px) {
  .article_gray_two_rows_text__column {
    gap: 1.5vmax;
  }
}
.article_gray_two_rows_text__text {
  font-family: "Lato", sans-serif;
  font-size: 1.25vmax;
  font-weight: 400;
  line-height: 1.5;
  color: #133C62;
  margin: 0;
}
@media (max-width: 768px) {
  .article_gray_two_rows_text__text {
    font-size: 1.4vmax;
  }
}

.article_gray_two_rows_picture {
  width: 100%;
  padding: 4.17vmax 7.5vmax;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.article_gray_two_rows_picture.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.article_gray_two_rows_picture__content {
  background-color: var(--color-bg-gray-light1);
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 3.13vmax 4vmax;
  border-radius: 0.4vmax;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2.5vmax;
}
@media (max-width: 768px) {
  .article_gray_two_rows_picture__content {
    flex-direction: column;
    gap: 2vmax;
  }
}
.article_gray_two_rows_picture__text-wrapper {
  flex: 0 0 45%;
  display: flex;
  flex-direction: column;
  gap: 2vmax;
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transition-delay: 0.2s;
}
@media (max-width: 768px) {
  .article_gray_two_rows_picture__text-wrapper {
    flex: 1;
    gap: 1.5vmax;
  }
}
.article_gray_two_rows_picture__text-wrapper.animate-in {
  opacity: 1;
  transform: translateX(0);
}
.article_gray_two_rows_picture__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3vmax;
  font-weight: 400;
  line-height: 1.1875;
  color: #133C62;
  margin: 0 0 2vmax 0;
  text-align: left;
  width: 100%;
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transition-delay: 0.2s;
}
@media (max-width: 768px) {
  .article_gray_two_rows_picture__title {
    font-size: 2.5vmax;
  }
}
.article_gray_two_rows_picture__title.animate-in {
  opacity: 1;
  transform: translateX(0);
}
.article_gray_two_rows_picture__text {
  font-family: "Lato", sans-serif;
  font-size: 1.25vmax;
  font-weight: 400;
  line-height: 1.5;
  color: #133C62;
  margin: 0;
}
@media (max-width: 768px) {
  .article_gray_two_rows_picture__text {
    font-size: 1.4vmax;
  }
}
.article_gray_two_rows_picture__image-wrapper {
  flex: 0 0 45%;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transition-delay: 0.4s;
}
@media (max-width: 768px) {
  .article_gray_two_rows_picture__image-wrapper {
    flex: 1;
    width: 100%;
  }
}
.article_gray_two_rows_picture__image-wrapper.animate-in {
  opacity: 1;
  transform: translateX(0);
}
.article_gray_two_rows_picture__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.52vmax;
}

.article-tags {
  padding: 0vmax 7.5vmax;
  background: transparent;
  width: 100%;
  margin: 2vmax 0;
}
.article-tags__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3vmax;
  font-weight: 400;
  line-height: 1.1875;
  color: #133C62;
  margin: 0 0 2vmax 0;
  text-align: left;
  width: 100%;
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transition-delay: 0.2s;
}
@media (max-width: 768px) {
  .article-tags__title {
    font-size: 2.5vmax;
  }
}
.article-tags__title.animate-in {
  opacity: 1;
  transform: translateX(0);
}
.article-tags__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6vmax;
  justify-content: flex-start;
}
@media (max-width: 768px) {
  .article-tags__list {
    gap: 0.5vmax;
    justify-content: center;
  }
}
.article-tags__tag {
  display: inline-flex;
  align-items: center;
  padding: 0.4vmax 0.8vmax;
  background-color: rgba(255, 255, 255, 0.8);
  color: #495057;
  text-decoration: none;
  border: 1px solid rgba(19, 60, 98, 0.1);
  border-radius: 0.3vmax;
  font-family: "Lato", sans-serif;
  font-size: 0.85vmax;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all 0.2s ease;
  cursor: pointer;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .article-tags__tag {
    padding: 0.5vmax 0.7vmax;
    font-size: 0.9vmax;
    border-radius: 0.25vmax;
  }
}
.article-tags__tag::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(19, 60, 98, 0.1), transparent);
  transition: left 0.5s ease;
}
.article-tags__tag:hover {
  background-color: rgba(19, 60, 98, 0.05);
  color: #133C62;
  border-color: rgba(19, 60, 98, 0.2);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(19, 60, 98, 0.15);
}
.article-tags__tag:hover::before {
  left: 100%;
}
.article-tags__tag:focus {
  outline: none;
  background-color: rgba(19, 60, 98, 0.1);
  color: #133C62;
  border-color: #133C62;
  box-shadow: 0 0 0 2px rgba(19, 60, 98, 0.2);
}
.article-tags__tag:active {
  transform: translateY(0);
  box-shadow: 0 1px 4px rgba(19, 60, 98, 0.2);
}
.article-tags__tag.active {
  background-color: #133C62;
  color: #ffffff;
  border-color: #133C62;
  transform: translateY(-1px);
  box-shadow: 0 3px 12px rgba(19, 60, 98, 0.3);
}
.article-tags__tag.active::before {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

@media (max-width: 480px) {
  /* Article Hero Section */
  .article-hero {
    padding: 1rem 1rem 2rem;
    min-height: auto;
    height: auto;
  }
  .article-hero__header {
    flex-direction: column;
    gap: 1.5rem;
  }
  .article-hero__left {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: row;
    gap: 1rem;
  }
  .article-hero__logo {
    margin-bottom: 0;
    flex: 1;
  }
  .logo--small .logo__icon {
    width: 150px;
    height: auto;
  }
  .logo__tagline {
    font-size: 0.65rem;
  }
  .article-hero__nav {
    display: none;
  }
  .article-hero__left .nav__burger-icon {
    display: block;
    width: 24px;
    height: 24px;
    cursor: pointer;
    margin-top: 0;
    flex-shrink: 0;
  }
  .article-hero__right {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    margin-top: 0;
  }
  .article-hero__lang {
    display: none;
  }
  .article_header {
    gap: 1rem;
  }
  .article_info {
    flex-direction: row;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  .time_read,
  .date_article {
    font-size: 0.75rem;
    gap: 0.5rem;
  }
  .time_icon,
  .date_icon {
    width: 16px;
    height: 16px;
  }
  .time_read_label,
  .date_article_label,
  .time_read_value,
  .date_article_value {
    font-size: 0.75rem;
  }
  .article_picture {
    margin: 1rem 0;
    height: 45vmax;
  }
  .article_picture .article_main_image {
    border-radius: 8px;
    height: 45vmax;
  }
  .article_h1 {
    font-size: 5vmax;
    line-height: 1.2;
    width: 100%;
  }
  .article_autor {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
  }
  .autor_img .autor_photo {
    width: 40px;
    height: 40px;
  }
  .article_autor_label {
    font-size: 0.75rem;
    text-align: left;
  }
  .autor_name {
    font-size: 0.875rem;
    text-align: left;
  }
  /* Article Text Section */
  .article-text {
    padding: 2rem 1rem;
  }
  .article-text__intro {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
  .article-text__heading {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
  .article-text__list-item {
    gap: 0.5rem;
    margin-bottom: 1rem;
  }
  .article-text__bullet {
    margin-top: 0.3rem;
    width: 5px;
    height: 5px;
  }
  .article-text__list-text {
    font-size: 0.875rem;
    line-height: 1.6;
  }
  /* Article Quote Section */
  .article-quote {
    margin: 2rem 0;
    padding: 0 1rem;
  }
  .article-quote__content {
    width: 100%;
    padding: 3rem 0;
  }
  .article-quote__text {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  /* Article Photography Section */
  .article_photography {
    height: 250px;
    margin: 2rem 0;
  }
  /* Text and Picture Section */
  .text_and_pict {
    padding: 2rem 1rem;
    margin: 1rem 0;
  }
  .text_and_pict__content {
    flex-direction: column;
    gap: 1.5rem;
  }
  .text_and_pict__left {
    gap: 1.5rem;
  }
  .text_and_pict__title {
    font-size: 1.5rem;
    line-height: 1.2;
  }
  .text_and_pict__text-wrapper {
    gap: 1rem;
  }
  .text_and_pict__text {
    font-size: 0.875rem;
    line-height: 1.6;
  }
  .text_and_pict__right {
    width: 100%;
  }
  .text_and_pict__image {
    border-radius: 8px;
    margin-bottom: 1rem;
  }
  /* Article Points Section */
  .article-points {
    padding: 2rem 1rem;
    margin: 2rem 0;
  }
  .article-points__title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    width: 100%;
  }
  .article-points__list {
    gap: 2rem;
  }
  .article-points__item {
    flex-direction: column;
    gap: 1rem;
  }
  .article-points__number {
    font-size: 2rem;
    margin-top: 0;
  }
  .article-points__subtitle {
    font-size: 1.125rem;
  }
  .article-points__description {
    font-size: 0.875rem;
    width: 100%;
  }
  /* Article Three Rows Section */
  .article_three_rows {
    padding: 2rem 1rem;
    margin: 2rem 0;
  }
  .article_three_rows__content {
    flex-direction: column;
    gap: 1.5rem;
    min-height: auto;
  }
  .article_three_rows__column--left, .article_three_rows__column--center, .article_three_rows__column--right {
    justify-content: flex-start;
  }
  .article_three_rows__column--center {
    order: -1;
  }
  .article_three_rows__text-wrapper {
    gap: 1rem;
  }
  .article_three_rows__text {
    font-size: 0.875rem;
    width: 100%;
  }
  /* Article Big H Section */
  .article_big_h {
    padding: 2rem 1rem;
    margin: 2rem 0;
  }
  .article_big_h__content {
    flex-direction: column;
    gap: 1.5rem;
  }
  .article_big_h__wrapper {
    gap: 1rem;
    padding-bottom: 0;
  }
  .article_big_h__paragraph {
    font-size: 0.875rem;
  }
  .article_big_h__heading {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  /* Article Schema Gray Section */
  .article_schema_gray {
    padding: 2rem 1rem;
  }
  .article_schema_gray__content {
    padding: 1.5rem 1rem;
    border-radius: 8px;
  }
  .article_schema_gray__content::before {
    width: 80px;
    height: 80px;
    top: 1rem;
    right: 1rem;
  }
  .article_schema_gray__row {
    margin-bottom: 1.5rem;
  }
  .article_schema_gray__row--first {
    flex-direction: column;
    gap: 1rem;
  }
  .article_schema_gray__title {
    font-size: 1.5rem;
    width: 100%;
  }
  .article_schema_gray__circle {
    width: 30px;
    height: 30px;
  }
  .article_schema_gray__text {
    font-size: 0.875rem;
    margin-bottom: 1rem;
  }
  .article_schema_gray__image {
    border-radius: 8px;
  }
  /* Article Cards Section */
  .article_cards {
    padding: 2rem 1rem;
    margin: 2rem 0;
  }
  .article_cards__content {
    gap: 1.5rem;
  }
  .article_cards__row {
    flex-direction: column;
    gap: 1rem;
  }
  .article_cards__card {
    padding: 1.5rem;
    gap: 1rem;
    border-radius: 8px;
  }
  .article_cards__title {
    font-size: 1.125rem;
  }
  .article_cards__text {
    font-size: 0.875rem;
  }
  /* Article Gray Two Rows Text Section */
  .article_gray_two_rows_text {
    padding: 2rem 1rem;
  }
  .article_gray_two_rows_text__content {
    padding: 1.5rem 1rem;
    border-radius: 8px;
    gap: 1.5rem;
  }
  .article_gray_two_rows_text__title {
    font-size: 1.5rem;
    width: 100%;
  }
  .article_gray_two_rows_text__columns {
    flex-direction: column;
    gap: 1.5rem;
  }
  .article_gray_two_rows_text__column {
    gap: 1rem;
  }
  .article_gray_two_rows_text__text {
    font-size: 0.875rem;
  }
  /* Article Gray Two Rows Picture Section */
  .article_gray_two_rows_picture {
    padding: 2rem 1rem;
  }
  .article_gray_two_rows_picture__content {
    padding: 1.5rem 1rem;
    border-radius: 8px;
    flex-direction: column;
    gap: 1.5rem;
  }
  .article_gray_two_rows_picture__text-wrapper {
    gap: 1rem;
  }
  .article_gray_two_rows_picture__title {
    font-size: 1.5rem;
  }
  .article_gray_two_rows_picture__text {
    font-size: 0.875rem;
  }
  .article_gray_two_rows_picture__image {
    border-radius: 8px;
  }
  /* Article Tags Section */
  .article-tags {
    padding: 0 1rem;
    margin: 1.5rem 0;
  }
  .article-tags__title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .article-tags__list {
    gap: 0.5rem;
    justify-content: flex-start;
  }
  .article-tags__tag {
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
    border-radius: 6px;
  }
  /* Page Footer Section */
  .page-footer {
    height: auto;
    min-height: 100vh;
    background-color: var(--color-text-dark);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .page-footer__container {
    width: 100%;
    padding: 2rem 1rem;
    height: 100%;
    display: grid;
    grid-template-areas: "top" "center" "bottom";
    grid-template-rows: auto 1fr auto;
    gap: 2rem;
    position: relative;
  }
  .page-footer__top {
    grid-area: top;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0;
  }
  .page-footer__top-left {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .page-footer__year {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--color-bg-white);
  }
  .page-footer__address {
    font-size: 0.875rem;
    color: var(--color-bg-white);
  }
  .page-footer__location {
    font-size: 0.875rem;
    color: var(--color-bg-white);
    max-width: 150px;
  }
  .page-footer__top-right {
    width: auto;
  }
  .page-footer__socials {
    display: flex;
    gap: 1rem;
  }
  .page-footer__social-icon {
    width: 28px;
    height: 28px;
  }
  .page-footer__email {
    color: var(--color-bg-white);
    font-size: 3.5vmax;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    align-self: flex-start;
    justify-self: start;
    position: relative;
  }
  .page-footer__email::after {
    content: "";
    position: absolute;
    bottom: -0.25rem;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-bg-white);
    transition: width 0.3s ease;
  }
  .page-footer__email:hover {
    color: var(--color-secondary);
  }
  .page-footer__email:hover::after {
    width: 100%;
    background-color: var(--color-secondary);
  }
  .page-footer__arrow {
    width: 20px;
    height: 20px;
    stroke: currentColor;
  }
  .page-footer__email:hover .page-footer__arrow {
    transform: translate(0.2rem, -0.2rem);
  }
  .page-footer__bottom {
    grid-area: bottom;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 0;
  }
  .page-footer__divider {
    width: 100%;
    height: 1px;
    background-color: var(--color-bg-white);
    opacity: 0.3;
    margin: 0;
  }
  .page-footer__links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .page-footer__link {
    font-size: 0.875rem;
    color: var(--color-bg-white);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .page-footer__link:hover {
    color: var(--color-secondary);
  }
}
.grossery-hero {
  height: auto !important;
  min-height: 100vh;
  padding: 2vmax 0;
  position: relative;
  background-image: url("../../assets/icons/grossery_retail/header_people1.svg");
  background-repeat: no-repeat;
  background-position: 60vmax 10vmax;
  background-size: auto 85%;
}

/* Grossery Header */
.grossery-hero__header {
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* Grossery Left Column */
.grossery-hero__left {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  gap: 2.08vmax;
  transform: translateX(-50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.grossery-hero__left.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.grossery-hero__logo {
  flex: 0 0 auto;
}
.grossery-hero__logo .logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.42vmax;
}
.grossery-hero__logo .logo .logo__icon {
  width: 19vmax;
  height: auto;
  display: block;
}
.grossery-hero__logo .logo--small .logo__icon {
  width: 19vmax;
}
.grossery-hero__logo .logo__tagline {
  font-family: var(--font-secondary);
  font-size: 1vmax;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0;
}

.grossery-hero__nav {
  flex: 0 0 auto;
  display: block;
}
.grossery-hero__nav .nav {
  display: flex;
  gap: 1.75vmax;
}
.grossery-hero__nav .nav--horizontal {
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
}
.grossery-hero__nav .nav__item {
  list-style: none;
}
.grossery-hero__nav .nav__link {
  font-family: var(--font-primary);
  font-size: 0.94vmax;
  font-weight: 700;
  color: #131313;
  line-height: 1.5;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
  white-space: nowrap;
}
.grossery-hero__nav .nav__link::after {
  content: "";
  position: absolute;
  bottom: -0.21vmax;
  left: 0;
  width: 0;
  height: 0.1vmax;
  background-color: #131313;
  transition: width 0.3s ease;
}
.grossery-hero__nav .nav__link:hover {
  color: var(--color-secondary);
}
.grossery-hero__nav .nav__link:hover::after {
  width: 100%;
  background-color: var(--color-secondary);
}
.grossery-hero__nav .nav__item--coffee .nav__link:hover::after {
  width: 0;
}
.grossery-hero__nav .nav__coffee-icon {
  width: 1.5vmax;
  height: auto;
  transition: transform 0.3s ease;
}
.grossery-hero__nav .nav__coffee-icon:hover {
  transform: scale(1.1);
}

/* Hide burger menu on desktop */
.nav__burger-icon {
  display: none;
}

/* Grossery Right Column */
.grossery-hero__right {
  display: flex;
  align-items: flex-start;
  width: 100%;
  gap: 2.08vmax;
  margin-top: 2.08vmax;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.grossery-hero__right.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.grossery-hero__lang {
  flex: 0 0 auto;
  display: block;
}
.grossery-hero__lang .lang-switcher {
  display: flex;
  gap: 0;
}
.grossery-hero__lang .lang-switcher .lang-switcher__btn {
  font-family: var(--font-secondary);
  font-size: 0.73vmax;
  font-weight: 300;
  color: var(--color-text-dark);
  padding: 0.42vmax;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  border: none;
  border-radius: 50%;
  background: transparent;
  width: 1.67vmax;
  height: 1.67vmax;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.grossery-hero__lang .lang-switcher .lang-switcher__btn:hover {
  background-color: var(--color-secondary);
  color: #FFFFFF;
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 4px 12px rgba(255, 101, 66, 0.3);
}
.grossery-hero__lang .lang-switcher .lang-switcher__btn.lang-switcher__btn--active {
  border: 1px solid var(--color-text-dark);
  background-color: var(--color-bg-light);
  transform: scale(1.1);
}
.grossery-hero__lang .lang-switcher--vertical {
  flex-direction: column;
  gap: 0.63vmax;
  border: none;
  border-radius: 0;
  padding: 0;
  background: transparent;
}

.grossery-hero__title-wrapper {
  flex: 1;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.grossery-hero__title-wrapper.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.grossery-hero__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 7vmax;
  font-weight: 400;
  line-height: 0.9;
  color: #133C62;
  text-align: left;
}

.grossery-hero__subtitle {
  font-size: 3.7vmax;
  line-height: 0.9;
  font-family: "Bebas Neue", sans-serif;
  color: #133C62;
  margin: 0;
  font-weight: 300;
}

.grossery-hero__mission {
  margin-bottom: 1vmax;
  padding-left: 4vmax;
}
.grossery-hero__mission .grossery-hero__mission-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3vmax;
  font-weight: 400;
  line-height: 1.1875;
  color: #133C62;
  margin: 0 0 3vmax 0;
  text-align: left;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.grossery-hero__mission .grossery-hero__mission-text {
  padding: 1.2vmax;
  background-color: var(--color-bg-gray-light1);
  font-size: 0.94vmax;
  line-height: 2;
  color: var(--color-text-dark);
  margin: 0 0 2vmax 0;
  width: 48%;
  border-radius: 0.3vmax;
}
.grossery-hero__mission .grossery-hero__mission-items {
  display: flex;
  flex-wrap: wrap;
  gap: 2vmax;
  width: 50vmax;
}
.grossery-hero__mission .grossery-hero__mission-item {
  display: flex;
  gap: 0.8vmax;
}
.grossery-hero__mission .grossery-hero__mission-item .grossery-hero__mission-circle {
  width: 0.8vmax;
  height: 0.8vmax;
  background-color: var(--color-primary);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.4vmax;
}
.grossery-hero__mission .grossery-hero__mission-item .grossery-hero__mission-item-text {
  font-size: 0.8vmax;
  color: var(--color-text-dark);
  font-weight: 400;
  width: 12vmax;
}

.grossery-hero__description {
  margin-top: 3vmax;
  max-width: 60%;
  padding-left: 4vmax;
}
.grossery-hero__description .grossery-hero__text {
  font-size: 1.125vmax;
  line-height: 2;
  color: #333;
  font-weight: 400;
  margin: 0;
}

.grossery-hero__field-lab {
  padding-left: 4vmax;
}
.grossery-hero__field-lab .grossery-hero__mission-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3vmax;
  font-weight: 400;
  line-height: 1.1875;
  color: #133C62;
  margin: 0 0 3vmax 0;
  text-align: left;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.grossery-hero__field-lab .grossery-hero__field-lab-content {
  display: flex;
  gap: 3vmax;
  margin-top: 2vmax;
}
.grossery-hero__field-lab .grossery-hero__field-lab-images {
  display: flex;
  gap: 0.8vmax;
}
.grossery-hero__field-lab .grossery-hero__field-lab-img {
  width: 10vmax;
  height: auto;
  border-radius: 0.3vmax;
  object-fit: cover;
}
.grossery-hero__field-lab .grossery-hero__field-lab-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2vmax;
}
.grossery-hero__field-lab .grossery-hero__field-lab-description {
  font-size: 0.94vmax;
  font-weight: 600;
  line-height: 1.6;
  color: var(--color-text-dark);
  margin: 0;
}
.grossery-hero__field-lab .grossery-hero__field-lab-contact {
  display: flex;
  flex-direction: column;
  gap: 1vmax;
}
.grossery-hero__field-lab .grossery-hero__field-lab-contact-item {
  display: flex;
  gap: 0.8vmax;
}
.grossery-hero__field-lab .grossery-hero__field-lab-icon {
  width: 1.2vmax;
  height: 1.2vmax;
  flex-shrink: 0;
  margin-top: 0.2vmax;
}
.grossery-hero__field-lab .grossery-hero__field-lab-contact-text {
  font-size: 0.9vmax;
  color: var(--color-text-dark);
  text-decoration: none;
  width: 10vmax;
  position: relative;
  transition: color 0.3s ease;
}
.grossery-hero__field-lab .grossery-hero__field-lab-contact-text:hover {
  color: var(--color-primary);
}
.grossery-hero__field-lab .grossery-hero__field-lab-contact-text:hover::after {
  width: 100%;
}
.grossery-hero__field-lab .grossery-hero__field-lab-contact-text::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: width 0.3s ease;
}

.create-product-gross {
  padding: 4vmax 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.create-product-gross.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.create-product-gross .create-product-gross-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: 6vmax;
}
.create-product-gross h2.create-product-gross__title {
  font-family: "Bebas Neue", sans-serif !important;
  font-size: 3vmax !important;
  font-weight: 400 !important;
  line-height: 1.1875 !important;
  color: #133C62 !important;
  margin: 0 0 3vmax 0 !important;
  text-align: left !important;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.create-product-gross h2.create-product-gross__title.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.create-product-gross .create-product-gross__grid {
  display: flex;
  justify-content: space-between;
  gap: 2vmax;
  padding: 2vmax 2vmax 2vmax 0;
}
.create-product-gross .create-product-gross__item {
  display: flex;
  flex-direction: column;
  background-color: var(--color-bg-gray-light1);
  padding: 2.5vmax;
  border-radius: 0.3vmax;
  width: 25%;
  height: 20vmax;
  justify-content: space-between;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.create-product-gross .create-product-gross__item.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.create-product-gross .create-product-gross__item:nth-child(1) {
  transition-delay: 0.1s;
}
.create-product-gross .create-product-gross__item:nth-child(2) {
  transition-delay: 0.2s;
}
.create-product-gross .create-product-gross__item:nth-child(3) {
  transition-delay: 0.3s;
}
.create-product-gross .create-product-gross__item:nth-child(4) {
  transition-delay: 0.4s;
}
.create-product-gross .create-product-gross__item-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.8vmax;
  font-weight: 400;
  color: #133C62;
  line-height: 1.2;
  height: 5vmax;
}
.create-product-gross .create-product-gross__item-text {
  font-size: 0.8vmax;
  line-height: 1.6;
  color: var(--color-text-dark);
  margin: 0;
  height: 8vmax;
  display: flex;
}

.mapping-market {
  background-color: var(--color-bg-gray-light1);
  background-image: url("../../assets/icons/grossery_retail/header_people2.svg");
  background-repeat: no-repeat;
  background-position: 56vmax 5vmax;
  background-size: auto 80%;
  padding: 0;
  position: relative;
}

.mapping-market__container {
  padding: 4vmax 2vmax 6vmax 6vmax;
  max-width: var(--container-max);
  margin: 0 auto;
}

.mapping-market__content {
  max-width: 60%;
}

.mapping-market__subtitle {
  font-family: var(--font-accent);
  font-size: 1.5vmax;
  font-weight: 400;
  color: var(--color-primary);
  text-transform: uppercase;
}

.mapping-market__title {
  font-family: var(--font-accent);
  font-size: 3vmax;
  font-weight: 400;
  color: var(--color-primary);
  margin: 0;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 3vmax;
}

.mapping-market__description {
  font-family: var(--font-primary);
  font-size: 0.8vmax;
  font-weight: 400;
  color: var(--color-text-dark);
  line-height: 2.5;
  max-width: 90%;
  margin-bottom: 3vmax;
}

.mapping-market__steps {
  display: flex;
  flex-direction: column;
  gap: 3vmax;
}

.mapping-market__step {
  display: flex;
  align-items: flex-start;
  gap: 2vmax;
  padding-left: 2vmax;
}

.mapping-market__step-number {
  font-family: var(--font-accent);
  font-size: 4vmax;
  font-weight: 400;
  color: var(--color-primary);
  margin: 0;
  line-height: 1;
}

.mapping-market__step-text {
  font-family: var(--font-primary);
  font-size: 0.8vmax;
  font-weight: 400;
  color: var(--color-text-dark);
  line-height: 2;
  margin: 0;
  width: 30vmax;
}

.mapping-market__highlight {
  font-weight: 700;
  color: var(--color-primary);
}

.mapping-market {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.mapping-market.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.mapping-market__content {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease-out 0.2s, transform 0.6s ease-out 0.2s;
}

.mapping-market.animate-in .mapping-market__content {
  opacity: 1;
  transform: translateX(0);
}

.mapping-market__step {
  transform: translateX(-20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.mapping-market.animate-in .mapping-market__step:nth-child(1) {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.4s;
}

.mapping-market.animate-in .mapping-market__step:nth-child(2) {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.6s;
}

.mapping-market.animate-in .mapping-market__step:nth-child(3) {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.8s;
}

.main-product-gross {
  background-color: var(--color-bg-light);
  background-image: url("../../assets/icons/grossery_retail/macbook_img.png");
  background-repeat: no-repeat;
  background-position: right 8vmax;
  background-size: auto 70%;
  padding: 6vmax 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.main-product-gross.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.main-product-gross__container {
  padding: 2vmax 2vmax 3vmax 6vmax;
  width: 50vmax;
}

.main-product-gross__header {
  margin-bottom: 3vmax;
  transition: opacity 0.6s ease-out 0.2s, transform 0.6s ease-out 0.2s;
}

.main-product-gross.animate-in .main-product-gross__header {
  opacity: 1;
  transform: translateX(0);
}

.main-product-gross__subtitle {
  font-family: var(--font-accent);
  font-size: 1.5vmax;
  font-weight: 400;
  color: var(--color-primary);
  text-transform: uppercase;
}

.main-product-gross__title {
  font-family: var(--font-accent);
  font-size: 3vmax;
  font-weight: 400;
  color: var(--color-secondary);
  margin: 0;
  line-height: 1;
  text-transform: uppercase;
}

.main-product-gross__content {
  width: 40vmax;
  margin-bottom: 2vmax;
  transform: translateX(-30px);
  transition: opacity 0.6s ease-out 0.4s, transform 0.6s ease-out 0.4s;
}

.main-product-gross.animate-in .main-product-gross__content {
  opacity: 1;
  transform: translateX(0);
}

.main-product-gross__text {
  font-family: var(--font-primary);
  font-size: 0.9vmax;
  font-weight: 400;
  color: var(--color-text-dark);
  line-height: 2.5;
  max-width: 90%;
  margin-bottom: 3vmax;
}

.main-product-gross__text:last-child {
  margin-bottom: 0;
}

.main-product-gross__highlight {
  font-weight: 700;
  color: var(--color-primary);
}

.main-product-gross__links {
  display: flex;
  flex-direction: column;
  gap: 0.5vmax;
  transform: translateX(-30px);
  transition: opacity 0.6s ease-out 0.6s, transform 0.6s ease-out 0.6s;
}

.main-product-gross.animate-in .main-product-gross__links {
  opacity: 1;
  transform: translateX(0);
}

.main-product-gross__link {
  font-family: var(--font-primary);
  font-size: 0.9vmax;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  padding: 1vmax 0;
  width: fit-content;
  display: inline-block;
  position: relative;
  transition: color 0.3s ease;
}

.main-product-gross__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-secondary);
  transition: width 0.4s ease;
}

.main-product-gross__link:hover {
  color: var(--color-secondary);
}

.main-product-gross__link:hover::after {
  width: 100%;
}

.first-direction-ad {
  background-color: var(--color-bg-light);
  padding: 2vmax 2vmax 3vmax 6vmax;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.first-direction-ad.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.first-direction-ad .main-product-gross__header {
  margin-bottom: 3vmax;
  transition: opacity 0.6s ease-out 0.2s, transform 0.6s ease-out 0.2s;
}
.first-direction-ad .main-product-gross__subtitle {
  font-family: var(--font-accent);
  font-size: 1.5vmax;
  font-weight: 400;
  color: var(--color-primary);
  text-transform: uppercase;
}
.first-direction-ad .main-product-gross__title {
  font-family: var(--font-accent);
  font-size: 3vmax;
  font-weight: 400;
  color: var(--color-secondary);
  margin: 0;
  line-height: 1;
  text-transform: uppercase;
}

.first-direction-ad__grid {
  display: flex;
  gap: 2vmax;
  justify-content: space-between;
}

.card {
  background-color: var(--color-bg-gray-light1);
  border-radius: 0.3vmax;
  display: flex;
  flex-direction: column;
  gap: 1.5vmax;
  padding: 2.5vmax;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out, box-shadow 0.3s ease-out, background-color 0.3s ease-out;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  background-color: #f8f9fa;
}
.card:hover .card__media {
  transform: scale(1.05);
}
.card:hover .card__title {
  color: var(--color-primary);
  transform: translateX(4px);
}
.card:hover .card__text {
  color: var(--color-text-dark);
  transform: translateX(2px);
}
.card:active {
  transform: translateY(-4px) scale(1.01);
  transition: transform 0.1s ease-out;
}
.card.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.card:nth-child(1) {
  transition-delay: 0.1s;
  width: 40vmax;
}
.card:nth-child(2) {
  transition-delay: 0.2s;
  width: 30vmax;
}
.card:nth-child(3) {
  transition-delay: 0.3s;
  width: 30vmax;
}

.card__media {
  width: 100%;
  height: 12vmax;
  object-fit: contain;
  align-self: flex-start;
  transition: transform 0.3s ease-out;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.card__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.2vmax;
  font-weight: 400;
  color: #133C62;
  line-height: 1.2;
  margin: 0;
  transition: color 0.3s ease-out, transform 0.3s ease-out;
}

.card__text {
  font-family: var(--font-primary);
  font-size: 0.8vmax;
  font-weight: 400;
  color: var(--color-text-dark);
  line-height: 1.6;
  margin: 0;
  transition: color 0.3s ease-out, transform 0.3s ease-out;
  opacity: 0.9;
}

.card:hover .card__text {
  opacity: 1;
}

.golden-catalog {
  background-color: var(--color-bg-gray-light1);
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  margin-top: 3vmax;
  margin-bottom: 3vmax;
}
.golden-catalog.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.golden-catalog-container {
  padding: 4vmax 2vmax 6vmax 6vmax;
  max-width: var(--container-max);
  margin: 0 auto;
}

.golden-catalog__wrapper {
  transition: opacity 0.6s ease-out 0.2s, transform 0.6s ease-out 0.2s;
}

.golden-catalog.animate-in .golden-catalog__wrapper {
  opacity: 1;
  transform: translateX(0);
}

.golden-catalog__content-flex {
  display: flex;
  gap: 4vmax;
  margin-top: 3vmax;
  width: 80%;
  transition: opacity 0.6s ease-out 0.4s, transform 0.6s ease-out 0.4s;
}

.golden-catalog.animate-in .golden-catalog__content-flex {
  opacity: 1;
}

.golden-catalog__text-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2vmax;
}

.golden-catalog__text {
  font-family: var(--font-primary);
  font-size: 0.8vmax;
  font-weight: 400;
  color: var(--color-text-dark);
  line-height: 2;
  margin: 0;
}

.golden-catalog__formula-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2vmax;
}

.golden-catalog__formula-img {
  width: 80%;
  padding: 1.2vmax;
  border-radius: 0.3vmax;
  height: auto;
  background-color: #F3F3F3;
}

.golden-catalog__formula-text {
  font-family: var(--font-primary);
  font-size: 0.7vmax;
  font-weight: 400;
  color: var(--color-text-dark);
  line-height: 2;
  margin: 0;
}

.golden-catalog__highlight {
  font-weight: 700;
}

.golden-catalog__icons {
  display: flex;
  flex-direction: column;
  gap: 1vmax;
  width: 80%;
  height: inherit;
}

.golden-catalog__icon {
  width: auto;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.golden-catalog.animate-in .golden-catalog__icon:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.golden-catalog.animate-in .golden-catalog__icon:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

.golden-catalog.animate-in .golden-catalog__icon:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.8s;
}

.left-comments {
  background-color: var(--color-bg-light);
  padding: 2vmax 2vmax 3vmax 6vmax;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  overflow: hidden;
  position: relative;
}
.left-comments::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  background-image: url("../../assets/icons/grossery_retail/Grocery retail.svg");
  background-repeat: repeat-x;
  background-position: 0 bottom;
  background-size: auto 60%;
  animation: runningText 15s linear infinite;
  z-index: 0;
}
.left-comments.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.left-comments__container {
  display: flex;
  gap: 7vmax;
  align-items: flex-start;
  margin: 10vmax auto;
  position: relative;
  z-index: 1;
}
.left-comments__icon {
  flex: 0 0 auto;
  width: 10vmax;
  height: 10vmax;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.left-comments.animate-in .left-comments__icon {
  opacity: 1;
  transform: translateX(0);
}
.left-comments__icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}
.left-comments__text {
  width: 60vmax;
  display: flex;
  flex-direction: column;
  gap: 2vmax;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.left-comments.animate-in .left-comments__text {
  opacity: 1;
  transform: translateX(0);
}
.left-comments__paragraph {
  font-family: var(--font-primary);
  font-size: 1.1vmax;
  font-weight: 400;
  color: var(--color-text-dark);
  line-height: 2.2;
  margin: 0;
  text-align: justify;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.left-comments__paragraph:nth-child(1) {
  transition-delay: 0.2s;
}
.left-comments__paragraph:nth-child(2) {
  transition-delay: 0.4s;
}
.left-comments.animate-in .left-comments__paragraph {
  opacity: 1;
  transform: translateY(0);
}
.left-comments__highlight {
  font-weight: 700;
}

@keyframes runningText {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.store-catalog {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.store-catalog.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.store-catalog__container {
  padding: 4vmax 2vmax 6vmax 6vmax;
  display: flex;
  align-items: flex-start;
  gap: 5vmax;
  margin-top: 3vmax;
}
.store-catalog__icon {
  width: 20vmax;
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.store-catalog.animate-in .store-catalog__icon {
  opacity: 1;
  transform: translateX(0);
}
.store-catalog__content {
  width: 60vmax;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.store-catalog.animate-in .store-catalog__content {
  opacity: 1;
  transform: translateX(0);
}
.store-catalog__paragraph {
  font-family: "Lato", sans-serif;
  font-size: 1.1vmax;
  line-height: 1.6;
  color: #333;
  margin-bottom: 1.5vmax;
}
.store-catalog__paragraph:last-child {
  margin-bottom: 0;
}
.store-catalog__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5vmax 0;
}
.store-catalog__list-item {
  font-family: "Lato", sans-serif;
  font-size: 1.1vmax;
  line-height: 1.6;
  color: #333;
  margin-bottom: 0.5vmax;
  position: relative;
  padding-left: 1.5vmax;
}
.store-catalog__list-item:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #333;
}
.store-catalog__list-item:last-child {
  margin-bottom: 0;
}
.store-catalog__additional {
  display: flex;
  align-items: flex-start;
  gap: 3vmax;
  margin-top: 5vmax;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.store-catalog.animate-in .store-catalog__additional {
  opacity: 1;
  transform: translateY(0);
}
.store-catalog__additional-icon {
  width: 4vmax;
  height: 4vmax;
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.store-catalog.animate-in .store-catalog__additional-icon {
  opacity: 1;
  transform: translateX(0);
}
.store-catalog__additional-text {
  font-family: "Lato", sans-serif;
  font-size: 1.1vmax;
  line-height: 1.6;
  color: #333;
  flex: 1;
  opacity: 0;
  transform: translateX(-15px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.store-catalog.animate-in .store-catalog__additional-text {
  opacity: 1;
  transform: translateX(0);
}
.store-catalog__highlight {
  font-weight: 700;
}

.auto-supply {
  background-color: var(--color-bg-gray-light1);
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.auto-supply.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.auto-supply__container {
  display: flex;
  padding: 4vmax 2vmax 6vmax 6vmax;
  gap: 7vmax;
}
.auto-supply__content {
  width: 50vmax;
}
.auto-supply__content-item {
  display: flex;
  flex-direction: column;
}
.auto-supply__items-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2vmax;
}
.auto-supply__image {
  width: 20vmax;
  height: auto;
  flex-shrink: 0;
}
.auto-supply__item {
  display: flex;
  gap: 2vmax;
  margin-top: 1vmax;
}
.auto-supply__circle {
  width: 1vmax;
  height: 1vmax;
  background-color: var(--color-primary);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.5vmax;
}
.auto-supply__text {
  font-size: 1.1vmax;
  line-height: 1.6;
  color: var(--color-text-medium);
  margin: 0;
}
.auto-supply__highlight {
  font-weight: 700;
}

.your-fridge {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.your-fridge.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.your-fridge {
  margin-top: 3vmax;
}
.your-fridge__container {
  padding: 4vmax 2vmax 6vmax 6vmax;
}
.your-fridge__content {
  display: flex;
  align-items: flex-start;
  gap: 4vmax;
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.your-fridge.animate-in .your-fridge__content {
  opacity: 1;
  transform: translateX(0);
}
.your-fridge__image {
  width: 30vmax;
  height: auto;
  flex-shrink: 0;
}
.your-fridge__text-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3vmax;
}
.your-fridge__wrapper {
  display: flex;
  flex-direction: column;
}
.your-fridge__voice-block {
  display: flex;
  align-items: flex-start;
  gap: 2vmax;
  width: 50vmax;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.your-fridge.animate-in .your-fridge__voice-block {
  opacity: 1;
  transform: translateX(0);
}
.your-fridge__voice-icon {
  width: 5vmax;
  height: auto;
  flex-shrink: 0;
}
.your-fridge__cards {
  display: flex;
  gap: 2vmax;
  margin-top: 1vmax;
}
.your-fridge__card {
  display: flex;
  flex-direction: column;
  width: 24vmax;
  padding: 2vmax;
  background: var(--color-bg-gray-light1);
  border-radius: 1vmax;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.your-fridge.animate-in .your-fridge__card {
  opacity: 1;
  transform: translateY(0);
}
.your-fridge.animate-in .your-fridge__card:nth-child(1) {
  transition-delay: 0.2s;
}
.your-fridge.animate-in .your-fridge__card:nth-child(2) {
  transition-delay: 0.4s;
}
.your-fridge__card-image {
  width: 7vmax;
  height: 7vmax;
  margin: 1.5vmax auto;
}
.your-fridge__card-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.2vmax;
  color: #133C62;
  margin-bottom: 1vmax;
  line-height: 1.2;
  font-weight: 400;
}
.your-fridge__card-text {
  font-family: "Lato", sans-serif;
  font-size: 1.1vmax;
  line-height: 1.5;
  color: #333;
  margin: 0;
}
.your-fridge__paragraph {
  font-family: "Lato", sans-serif;
  font-size: 1.1vmax;
  line-height: 1.6;
  color: #333;
  width: 50vmax;
}
.your-fridge__paragraph:last-child {
  margin-bottom: 0;
}
.your-fridge__highlight {
  font-weight: 700;
}

.page-footer {
  background-color: #4B4B4B;
}

@media (max-width: 480px) {
  .grossery-hero {
    background-image: none !important;
    padding: 4vw 4vw;
    min-height: auto;
  }
  .nav__burger-icon {
    display: block;
    width: 24px;
    height: 24px;
    cursor: pointer;
    margin-top: 0;
    flex-shrink: 0;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 100;
  }
  .grossery-hero__nav {
    display: none;
  }
  .grossery-hero__header {
    flex-direction: column;
    gap: 6vw;
  }
  .grossery-hero__left {
    flex-direction: column;
    width: 100%;
    gap: 4vw;
    transform: none;
  }
  .grossery-hero__logo {
    width: 100%;
  }
  .grossery-hero__logo .logo__icon {
    width: 150px;
    height: auto;
  }
  .grossery-hero__logo .logo__tagline {
    font-size: 10px;
  }
  .grossery-hero__right {
    flex-direction: column;
    width: 100%;
    gap: 4vw;
    margin-top: 0;
    transform: none;
  }
  .grossery-hero__lang {
    display: none;
  }
  .grossery-hero__title-wrapper {
    transform: none;
  }
  .grossery-hero__title {
    font-size: 13vmax;
    line-height: 1.1;
  }
  .grossery-hero__subtitle {
    font-size: 20px;
    line-height: 1.2;
  }
  .grossery-hero__description {
    max-width: 100%;
    padding-left: 0;
    margin-top: 6vw;
  }
  .grossery-hero__description .grossery-hero__text {
    font-size: 14px;
    line-height: 1.6;
  }
  .grossery-hero__mission {
    padding-left: 0;
    margin-bottom: 6vw;
  }
  .grossery-hero__mission .grossery-hero__mission-title {
    font-size: 5vmax;
    margin: 2vmax 0;
    transform: translateY(0);
  }
  .grossery-hero__mission .grossery-hero__mission-text {
    width: 100%;
    font-size: 14px;
    padding: 4vw;
    line-height: 1.6;
  }
  .grossery-hero__mission .grossery-hero__mission-items {
    flex-direction: column;
    width: 100%;
    gap: 4vw;
  }
  .grossery-hero__mission .grossery-hero__mission-item {
    width: 100%;
  }
  .grossery-hero__mission .grossery-hero__mission-item .grossery-hero__mission-circle {
    width: 12px;
    height: 12px;
    margin-top: 1vmax;
  }
  .grossery-hero__mission .grossery-hero__mission-item .grossery-hero__mission-item-text {
    font-size: 14px;
    width: auto;
  }
  .grossery-hero__field-lab {
    padding-left: 0;
  }
  .grossery-hero__field-lab .grossery-hero__mission-title {
    font-size: 5vmax;
    margin: 2vmax 0;
    transform: translateY(0);
  }
  .grossery-hero__field-lab .grossery-hero__field-lab-content {
    flex-direction: column;
    gap: 4vw;
  }
  .grossery-hero__field-lab .grossery-hero__field-lab-images {
    width: 100%;
    gap: 2vw;
  }
  .grossery-hero__field-lab .grossery-hero__field-lab-images .grossery-hero__field-lab-img {
    width: calc(50% - 1vw);
    border-radius: 8px;
  }
  .grossery-hero__field-lab .grossery-hero__field-lab-info {
    gap: 4vw;
  }
  .grossery-hero__field-lab .grossery-hero__field-lab-description {
    font-size: 16px;
  }
  .grossery-hero__field-lab .grossery-hero__field-lab-contact-text {
    font-size: 14px;
    width: auto;
  }
  .grossery-hero__field-lab .grossery-hero__field-lab-icon {
    width: 16px;
    height: 16px;
  }
  .create-product-gross {
    padding: 8vw 4vw;
  }
  .create-product-gross .create-product-gross-container {
    padding-left: 0;
  }
  .create-product-gross h2.create-product-gross__title {
    font-size: 28px !important;
    margin-bottom: 6vw !important;
  }
  .create-product-gross .create-product-gross__grid {
    flex-direction: column;
    gap: 4vw;
    padding: 0;
  }
  .create-product-gross .create-product-gross__item {
    width: 100%;
    height: auto;
    min-height: 150px;
    padding: 6vw;
  }
  .create-product-gross .create-product-gross__item-title {
    font-size: 20px;
    height: auto;
    margin-bottom: 3vw;
  }
  .create-product-gross .create-product-gross__item-text {
    font-size: 14px;
    height: auto;
  }
  .mapping-market {
    background-image: none !important;
  }
  .mapping-market .mapping-market__container {
    padding: 8vw 4vw;
  }
  .mapping-market .mapping-market__content {
    max-width: 100%;
  }
  .mapping-market .mapping-market__subtitle {
    font-size: 16px;
  }
  .mapping-market .mapping-market__title {
    font-size: 28px;
    margin-bottom: 4vw;
  }
  .mapping-market .mapping-market__description {
    font-size: 14px;
    line-height: 1.6;
    max-width: 100%;
    margin-bottom: 6vw;
  }
  .mapping-market .mapping-market__steps {
    gap: 6vw;
  }
  .mapping-market .mapping-market__step {
    flex-direction: column;
    gap: 2vw;
    padding-left: 0;
  }
  .mapping-market .mapping-market__step-number {
    font-size: 36px;
  }
  .mapping-market .mapping-market__step-text {
    font-size: 14px;
    line-height: 1.6;
    width: 100%;
  }
  .main-product-gross {
    background-image: none !important;
    padding: 8vw 4vw;
  }
  .main-product-gross .main-product-gross__container {
    padding: 0;
    width: 100%;
  }
  .main-product-gross .main-product-gross__header {
    margin-bottom: 4vw;
  }
  .main-product-gross .main-product-gross__subtitle {
    font-size: 16px;
  }
  .main-product-gross .main-product-gross__title {
    font-size: 5vmax;
  }
  .main-product-gross .main-product-gross__content {
    width: 100%;
    margin-bottom: 4vw;
  }
  .main-product-gross .main-product-gross__text {
    font-size: 14px;
    line-height: 1.6;
    max-width: 100%;
    margin-bottom: 4vw;
  }
  .main-product-gross .main-product-gross__links {
    gap: 2vw;
  }
  .main-product-gross .main-product-gross__link {
    font-size: 14px;
    padding: 2vw 0;
  }
  .first-direction-ad {
    padding: 8vw 4vw;
  }
  .first-direction-ad .main-product-gross__header {
    margin-bottom: 4vw;
  }
  .first-direction-ad .main-product-gross__subtitle {
    font-size: 16px;
  }
  .first-direction-ad .main-product-gross__title {
    font-size: 5vmax;
  }
  .first-direction-ad .first-direction-ad__grid {
    flex-direction: column;
    gap: 4vw;
  }
  .first-direction-ad .card {
    width: 100% !important;
    padding: 6vw;
  }
  .first-direction-ad .card:hover {
    transform: none;
  }
  .first-direction-ad .card__media {
    height: 150px;
  }
  .first-direction-ad .card__title {
    font-size: 20px;
  }
  .first-direction-ad .card__text {
    font-size: 14px;
  }
  .golden-catalog {
    margin-top: 6vw;
    margin-bottom: 6vw;
  }
  .golden-catalog .golden-catalog-container {
    padding: 8vw 4vw;
  }
  .golden-catalog .golden-catalog__icons {
    width: 100%;
    gap: 4vw;
  }
  .golden-catalog .golden-catalog__icons .golden-catalog__icon {
    width: 100%;
  }
  .golden-catalog .golden-catalog__content-flex {
    flex-direction: column;
    width: 100%;
    gap: 6vw;
    margin-top: 6vw;
  }
  .golden-catalog .golden-catalog__text {
    font-size: 14px;
    line-height: 1.6;
  }
  .golden-catalog .golden-catalog__formula-block {
    gap: 4vw;
  }
  .golden-catalog .golden-catalog__formula-img {
    width: 100%;
    padding: 4vw;
  }
  .golden-catalog .golden-catalog__formula-text {
    font-size: 12px;
    line-height: 1.6;
  }
  .left-comments {
    padding: 8vw 4vw;
  }
  .left-comments::before {
    background-size: auto 30%;
  }
  .left-comments__container {
    flex-direction: column;
    gap: 4vw;
    margin: 6vw auto;
  }
  .left-comments__icon {
    width: 80px;
    height: 80px;
  }
  .left-comments__text {
    width: 100%;
    gap: 4vw;
  }
  .left-comments__paragraph {
    font-size: 14px;
    line-height: 1.6;
  }
  .store-catalog__container {
    flex-direction: column;
    padding: 8vw 4vw;
    gap: 4vw;
    margin-top: 0;
  }
  .store-catalog__icon {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
  }
  .store-catalog__content {
    width: 100%;
  }
  .store-catalog__paragraph {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 4vw;
  }
  .store-catalog__list-item {
    font-size: 14px;
    padding-left: 4vw;
  }
  .store-catalog__additional {
    flex-direction: column;
    gap: 4vw;
    margin-top: 6vw;
  }
  .store-catalog__additional-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto;
  }
  .store-catalog__additional-text {
    font-size: 14px;
  }
  .auto-supply__container {
    flex-direction: column;
    padding: 8vw 4vw;
    gap: 4vw;
  }
  .auto-supply__content {
    width: 100%;
  }
  .auto-supply__items-wrapper {
    gap: 4vw;
  }
  .auto-supply__item {
    gap: 3vw;
  }
  .auto-supply__circle {
    width: 12px;
    height: 12px;
    margin-top: 2px;
  }
  .auto-supply__text {
    font-size: 14px;
    line-height: 1.6;
  }
  .auto-supply__image {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
  }
  .your-fridge {
    margin-top: 6vw;
  }
  .your-fridge__container {
    padding: 8vw 4vw;
  }
  .your-fridge__content {
    flex-direction: column;
    gap: 4vw;
  }
  .your-fridge__image {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
  }
  .your-fridge__text-block {
    gap: 4vw;
  }
  .your-fridge__voice-block {
    flex-direction: column;
    width: 100%;
    gap: 4vw;
    align-items: center;
  }
  .your-fridge__voice-icon {
    width: 60px;
  }
  .your-fridge__paragraph {
    font-size: 14px;
    line-height: 1.6;
    width: 100%;
  }
  .your-fridge__cards {
    flex-direction: column;
    gap: 4vw;
    margin-top: 4vw;
  }
  .your-fridge__card {
    width: 100%;
    padding: 6vw;
    border-radius: 12px;
  }
  .your-fridge__card-image {
    width: 80px;
    height: 80px;
  }
  .your-fridge__card-title {
    font-size: 20px;
    margin-bottom: 2vw;
  }
  .your-fridge__card-text {
    font-size: 14px;
    line-height: 1.5;
  }
  .page-footer {
    height: 100vh;
    background-color: var(--color-text-dark);
    background-image: url("../../assets/icons/grossery_retail/gross_footer_cio1.svg");
    background-repeat: no-repeat;
    background-position: 20vmax bottom;
    background-size: 43vmax;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0.1vmax solid var(--color-bg-blue);
  }
  .page-footer__container {
    width: 100%;
    max-width: var(--container-max);
    padding: 2.08vmax 4.16vmax;
    height: 100%;
    display: grid;
    grid-template-areas: "top top top" "center center center" "bottom bottom bottom";
    grid-template-rows: auto 1fr auto;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2vmax;
    position: relative;
  }
  .page-footer__top {
    grid-area: top;
    display: flex;
    align-items: flex-end;
    gap: 2vmax;
  }
  .page-footer__top-left {
    display: flex;
    flex-direction: column;
    gap: 0.8vmax;
  }
  .page-footer__year, .page-footer__address, .page-footer__location {
    color: var(--color-bg-white);
    font-family: var(--font-primary);
    font-size: 2vmax;
    font-weight: 400;
    line-height: 1.2;
    margin: 0;
    width: 28vmax;
  }
  .page-footer__year {
    font-size: 2vmax;
    margin-bottom: 2vmax;
  }
  .page-footer__top-right {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .page-footer__socials {
    display: flex;
    gap: 1.6vmax;
  }
  .page-footer__social-link {
    display: inline-block;
    transition: transform 0.3s ease;
  }
  .page-footer__social-link:hover {
    transform: scale(1.05);
  }
  .page-footer__social-link:focus-visible {
    outline: 0.2vmax solid var(--color-secondary);
    outline-offset: 0.2vmax;
  }
  .page-footer__social-icon {
    width: 3vmax;
    height: 3vmax;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
  }
  .page-footer__social-link:hover .page-footer__social-icon {
    filter: brightness(0) saturate(100%) invert(42%) sepia(93%) saturate(1352%) hue-rotate(346deg) brightness(101%) contrast(97%);
  }
  .page-footer__center {
    grid-area: center;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    gap: 2.4vmax;
  }
  .page-footer__email {
    color: var(--color-bg-white);
    font-family: var(--font-primary);
    font-size: 3.2vmax;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 1.2vmax;
    position: relative;
    transition: color 0.3s ease;
    margin-top: 5vmax;
  }
  .page-footer__email::after {
    content: "";
    position: absolute;
    bottom: -0.21vmax;
    left: 0;
    width: 0;
    height: 0.1vmax;
    background-color: var(--color-bg-white);
    transition: width 0.3s ease;
  }
  .page-footer__email:hover {
    color: var(--color-secondary);
  }
  .page-footer__email:hover::after {
    width: 100%;
    background-color: var(--color-secondary);
  }
  .page-footer__email:focus-visible {
    outline: 0.2vmax solid var(--color-secondary);
    outline-offset: 0.2vmax;
  }
  .page-footer__arrow {
    width: 2.4vmax;
    height: 2.4vmax;
    flex-shrink: 0;
    stroke: currentColor;
    transition: transform 0.2s ease;
  }
  .page-footer__email:hover .page-footer__arrow {
    transform: translate(0.4vmax, -0.4vmax);
  }
  .page-footer__message {
    color: var(--color-bg-white);
    font-family: var(--font-primary);
    font-size: 2vmax;
    line-height: 3.5vmax;
    font-weight: 400;
    line-height: 2;
    max-width: 28vmax;
    margin: 0;
    margin-bottom: 20vmax;
  }
  .page-footer__bottom {
    grid-area: bottom;
    display: flex;
    flex-direction: column;
    gap: 1.6vmax;
  }
  .page-footer__divider {
    width: 80%;
    height: 0.1vmax;
    background-color: var(--color-bg-white);
    opacity: 0.3;
    margin: 0;
  }
  .page-footer__links {
    display: flex;
    gap: 2.4vmax;
    flex-wrap: wrap;
  }
  .page-footer__link {
    color: var(--color-bg-white);
    font-family: var(--font-primary);
    font-size: 1.4vmax;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  .page-footer__link:hover {
    color: var(--color-secondary);
  }
  .page-footer__link:focus-visible {
    outline: 0.2vmax solid var(--color-secondary);
    outline-offset: 0.2vmax;
  }
}
.persona-bg {
  background-image: url("../../assets/icons/persona/persona-main-bg.svg");
  background-repeat: no-repeat;
  background-position: 60vmax 10vmax;
  background-size: auto 70%;
}

.key-components__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0vmax 2vmax 0vmax 6vmax;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.key-components__container.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.key-components__title {
  font-family: var(--font-accent);
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.1;
  color: var(--color-primary);
  margin-bottom: var(--spacing-lg);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.key-components__title.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.key-components__text {
  font-family: var(--font-primary);
  font-size: 1.1vmax;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text-dark);
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.key-components__text.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.key-carousel {
  background-color: var(--color-bg-light, #f8f9fa);
}
.key-carousel__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0vmax 2vmax 6vmax 6vmax;
}
.key-carousel__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2vmax;
  margin-top: 3vmax;
}
.key-carousel__card {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  padding: 2vmax;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.key-carousel__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.key-carousel__content {
  margin-bottom: 1.5vmax;
}
.key-carousel__title {
  font-family: var(--font-accent);
  font-size: 1.4vmax;
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-primary);
  height: 5vmax;
}
.key-carousel__text {
  font-family: var(--font-primary);
  font-size: 0.7vmax;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text-dark);
  height: 5vmax;
}
.key-carousel__image {
  border-radius: 8px;
  overflow: hidden;
}
.key-carousel__img {
  height: 14vmax;
  transition: transform 0.3s ease;
}
.key-carousel__card:hover .key-carousel__img {
  transform: scale(1.05);
}
.key-carousel.animate-in .key-carousel__card {
  opacity: 1;
  transform: translateY(0);
}
.key-carousel__card {
  opacity: 0;
  transform: translateX(-80px) scale(0.9);
  transition: opacity 1.2s ease-out, transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.key-carousel__card.animate-in {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.persona-basis {
  background-color: var(--color-bg-light, #f8f9fa);
  margin-bottom: 6vmax;
}
.persona-basis__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0vmax 2vmax 0vmax 6vmax;
}
.persona-basis__title {
  font-family: var(--font-accent);
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.1;
  color: var(--color-primary);
  margin-bottom: 3vmax;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.persona-basis__items {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5vmax 2vmax;
}
.persona-basis__item {
  display: flex;
  gap: 1vmax;
  width: 16vmax;
  border-radius: 8px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out, background-color 0.3s ease;
}
.persona-basis__item:hover {
  background-color: rgba(var(--color-primary-rgb), 0.05);
  transform: translateY(-2px);
}
.persona-basis__item.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.persona-basis__circle {
  width: 0.8vmax;
  height: 0.8vmax;
  background-color: var(--color-primary);
  border-radius: 50%;
  margin-top: 0.3vmax;
}
.persona-basis__text {
  font-family: var(--font-primary);
  font-size: 0.9vmax;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-text-dark);
  width: 13vmax;
}

.persona-citate {
  background-color: var(--color-bg-gray-light1);
  padding: 6vmax 6vmax;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4vmax;
  position: relative;
  overflow: hidden;
}
.persona-citate__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4vmax;
  position: relative;
  z-index: 2;
}
.persona-citate__text {
  font-family: var(--font-primary);
  font-size: 1.1vmax;
  font-weight: 400;
  line-height: 2;
  color: var(--color-text-dark);
  width: 40vmax;
  text-align: right;
}
.persona-citate__highlight {
  font-weight: 700;
}
.persona-citate__marquee {
  position: absolute;
  top: 24vmax;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
  mask: linear-gradient(to right, transparent 10%, black 20%, black 90%, transparent 100%);
  -webkit-mask: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}
.persona-citate__marquee-content {
  display: flex;
  width: 300%;
  height: 100%;
  animation: marquee-scroll 35s linear infinite, marquee-pulse 4s ease-in-out infinite;
}
.persona-citate__marquee-img {
  width: 33.333%;
  height: auto;
  object-fit: contain;
  opacity: 0.7;
  filter: drop-shadow(0 0 10px rgb(19, 60, 98)) brightness(0.1) contrast(1.2);
}
.persona-citate__image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.persona-citate__img {
  width: 10vmax;
  height: auto;
  transition: transform 0.3s ease;
}
.persona-citate__img:hover {
  transform: scale(1.05);
}

.persona-add-text {
  font-size: 1.1vmax;
}

.instrument-library__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2vmax 3vmax 6vmax;
}
.instrument-library__content {
  min-height: 0;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.instrument-library__content.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.instrument-library__info {
  display: flex;
  gap: 10vmax;
  margin-top: 4vmax;
}
.instrument-library__text {
  width: 44vmax;
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 1s ease-out, transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.instrument-library__text.animate-in {
  opacity: 1;
  transform: translateX(0);
}
.instrument-library__paragraph {
  font-family: var(--font-primary);
  font-size: 1.1vmax;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text-dark);
  margin-bottom: 3vmax;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.instrument-library__paragraph:last-child {
  margin-bottom: 0;
}
.instrument-library__paragraph.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.instrument-library__paragraph:nth-child(2) {
  transition-delay: 0.2s;
}
.instrument-library__image {
  opacity: 0;
  transform: translateX(50px) scale(0.9);
  transition: opacity 1s ease-out, transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.instrument-library__image.animate-in {
  opacity: 1;
  transform: translateX(0) scale(1);
}
.instrument-library__img {
  width: 29vmax;
  display: block;
  transition: transform 0.3s ease;
}
.instrument-library__image:hover .instrument-library__img {
  transform: scale(1.05);
}

.communication-analysis {
  background-color: var(--color-bg-gray-light1);
  background-image: url("../../assets/icons/persona/real_time_ico1.svg");
  background-repeat: no-repeat;
  background-position: 55vmax center;
  background-size: 35vmax auto;
  padding: 6vmax 0;
  position: relative;
}
.communication-analysis::before {
  content: "";
  position: absolute;
  top: 0;
  right: 5vmax;
  width: 35vmax;
  height: 100%;
  background-image: url("../../assets/icons/persona/real_time_ico1.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0;
  transform: translateX(10vmax) scale(0.8);
  transition: opacity 1.2s ease-out, transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
  z-index: 1;
}
.communication-analysis {
  background-image: none;
}
.communication-analysis.animate-in .communication-analysis__content {
  opacity: 1;
  transform: translateY(0);
}
.communication-analysis.animate-in .communication-analysis__model {
  opacity: 1;
  transform: translateX(0);
}
.communication-analysis.animate-in .communication-analysis__item {
  opacity: 1;
  transform: translateY(0);
}
.communication-analysis.animate-in::before {
  opacity: 1;
  transform: translateX(0) scale(1);
}
.communication-analysis__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2vmax 0 6vmax;
  position: relative;
  z-index: 2;
}
.communication-analysis__content {
  width: 45vmax;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.communication-analysis__subtitle {
  font-family: var(--font-accent);
  font-size: 1.5vmax;
  font-weight: 400;
  color: var(--color-primary);
  text-transform: uppercase;
}
.communication-analysis__title {
  font-family: var(--font-accent);
  font-size: 3vmax;
  font-weight: 400;
  color: var(--color-primary);
  margin: 0;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 3vmax;
}
.communication-analysis__text {
  font-family: var(--font-primary);
  font-size: 1.1vmax;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text-dark);
  margin-bottom: 2vmax;
}
.communication-analysis__model {
  margin-top: 3vmax;
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.communication-analysis__model:nth-child(2) {
  transition-delay: 0.2s;
}
.communication-analysis__model-title {
  font-family: var(--font-accent);
  font-size: 1.3vmax;
  font-weight: 400;
  color: var(--color-primary);
  margin-bottom: 2vmax;
  text-transform: uppercase;
}
.communication-analysis__items {
  display: flex;
  flex-direction: column;
  gap: 1.5vmax;
}
.communication-analysis__item {
  display: flex;
  align-items: flex-start;
  gap: 1vmax;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.communication-analysis__item:nth-child(1) {
  transition-delay: 0.1s;
}
.communication-analysis__item:nth-child(2) {
  transition-delay: 0.2s;
}
.communication-analysis__item:nth-child(3) {
  transition-delay: 0.3s;
}
.communication-analysis__circle {
  width: 1vmax;
  height: 1vmax;
  background-color: var(--color-primary);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.2vmax;
}
.communication-analysis__item-text {
  font-family: var(--font-primary);
  font-size: 1vmax;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text-dark);
  margin: 0;
}
.communication-analysis__icon {
  width: 1.5vmax;
  height: 1.5vmax;
  flex-shrink: 0;
  margin-top: 0.1vmax;
}
.communication-analysis__icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.persol_marg {
  margin-top: 0vmax !important;
  padding-top: 0vmax !important;
}

.persona-description {
  margin: 3vmax 0;
}
.persona-description__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0vmax 2vmax 0vmax 6vmax;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.persona-description__container.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.persona-description__text {
  font-family: var(--font-primary);
  font-size: 1.1vmax;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text-dark);
  margin-bottom: var(--spacing-lg);
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.persona-description__text.animate-in {
  opacity: 1;
  transform: translateX(0);
}
.persona-description__bold {
  font-weight: 700;
}
.persona-description__title {
  font-family: var(--font-accent);
  font-size: 2vmax;
  font-weight: 400;
  line-height: 1.1;
  color: var(--color-secondary);
  margin-bottom: var(--spacing-lg);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.persona-description__title.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.auri {
  background-image: url("../../assets/icons/persona/auri.png");
  background-position: 65vmax 8vmax;
  background-size: 22vmax;
  background-repeat: no-repeat;
  position: relative;
  padding: 6vmax 0;
}
.auri__container {
  margin: 0 auto;
  padding: 0vmax 2vmax 0vmax 6vmax;
}
.auri__content {
  width: 50vmax;
  max-width: 100%;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.auri__content.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.auri__subtitle {
  font-family: var(--font-accent);
  font-size: 1.5vmax;
  font-weight: 400;
  color: var(--color-primary);
  text-transform: uppercase;
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.auri__subtitle.animate-in {
  opacity: 1;
  transform: translateX(0);
}
.auri__title {
  font-family: var(--font-accent);
  font-size: 3vmax;
  font-weight: 400;
  color: var(--color-primary);
  margin: 0;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 3vmax;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.auri__title.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.auri__text {
  font-family: "Lato", sans-serif;
  font-size: 1.1vmax;
  font-weight: 400;
  color: var(--font-primary);
  line-height: 1.6;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.auri__text.animate-in {
  opacity: 1;
  transform: translateX(0);
}
.auri__model {
  margin-top: 2rem;
}
.auri__items {
  display: flex;
  flex-direction: column;
  gap: 3vmax;
  width: 80%;
}
.auri__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.auri__item.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.auri__circle {
  width: 12px;
  height: 12px;
  background-color: var(--color-primary);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.6vmax;
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.4s ease-out, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.auri__item.animate-in .auri__circle {
  opacity: 1;
  transform: scale(1);
}
.auri__item-text {
  font-family: "Lato", sans-serif;
  font-size: 1.1vmax;
  font-weight: 400;
  color: var(--font-primary);
  line-height: 1.6;
  margin: 0;
}
.auri__image-mobile {
  display: none;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-66.666%);
  }
}
@keyframes marquee-pulse {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.8;
  }
}
.footer-persona {
  background-image: url("../../assets/icons/persona/persona-footer.svg");
  background-position: calc(100% - 4vmax) bottom;
  background-size: 25vmax;
  background-color: #4B4B4B;
}
.footer-persona .footer__container {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.footer-persona .footer__container.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.footer-persona .footer__top {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.footer-persona .footer__top.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.footer-persona .footer__top-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.footer-persona .footer__top-left.animate-in {
  opacity: 1;
  transform: translateX(0);
}
.footer-persona .footer__top-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.footer-persona .footer__top-right.animate-in {
  opacity: 1;
  transform: translateX(0);
}
.footer-persona .footer__social-link {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.4s ease-out, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.footer-persona .footer__social-link.animate-in {
  opacity: 1;
  transform: scale(1);
}
.footer-persona .footer__center {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.footer-persona .footer__center.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.footer-persona .footer__email {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.footer-persona .footer__email.animate-in {
  opacity: 1;
  transform: translateX(0);
}
.footer-persona .footer__message {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.footer-persona .footer__message.animate-in {
  opacity: 1;
  transform: translateX(0);
}
.footer-persona .footer__bottom {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.footer-persona .footer__bottom.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.footer-persona .footer__link {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease-out, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.footer-persona .footer__link.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.nav__burger-icon {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1000;
}
.nav__burger-icon:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 4px;
}
@media (max-width: 480px) {
  .nav__burger-icon {
    display: flex;
  }
}

.nav__burger-line {
  width: 100%;
  height: 3px;
  background-color: var(--color-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  visibility: hidden;
}
.mobile-menu--open {
  visibility: visible;
}
.mobile-menu--open .mobile-menu__overlay {
  opacity: 1;
}
.mobile-menu--open .mobile-menu__content {
  transform: translateX(0);
}
.mobile-menu__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-menu__content {
  position: absolute;
  top: 0;
  right: 0;
  width: 80%;
  max-width: 400px;
  height: 100%;
  background-color: #ffffff;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
}
.mobile-menu__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(19, 60, 98, 0.1);
}
.mobile-menu__logo {
  width: 120px;
}
.mobile-menu__logo-img {
  width: 100%;
  height: auto;
}
.mobile-menu__close {
  position: relative;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
.mobile-menu__close:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 4px;
}
.mobile-menu__close-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--color-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.mobile-menu__close-line:first-child {
  transform: translateY(-50%) rotate(45deg);
}
.mobile-menu__close-line:last-child {
  transform: translateY(-50%) rotate(-45deg);
}
.mobile-menu__nav {
  flex: 1;
  margin-bottom: 2rem;
}
.mobile-menu__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-menu__item {
  margin-bottom: 0.5rem;
  transition: transform 0.2s ease;
}
.mobile-menu__link {
  display: flex;
  align-items: center;
  padding: 1rem;
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-text-dark);
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.mobile-menu__link:hover, .mobile-menu__link:focus {
  background-color: rgba(19, 60, 98, 0.05);
  color: var(--color-primary);
}
.mobile-menu__link--coffee {
  gap: 0.5rem;
}
.mobile-menu__coffee-icon {
  width: 20px;
  height: 20px;
}
.mobile-menu__lang {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(19, 60, 98, 0.1);
  border-bottom: 1px solid rgba(19, 60, 98, 0.1);
  margin-bottom: 1.5rem;
}
.mobile-menu__footer {
  padding-top: 1rem;
}
.mobile-menu__socials {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
.mobile-menu__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.mobile-menu__social-link:hover, .mobile-menu__social-link:focus {
  background-color: rgba(19, 60, 98, 0.05);
  transform: scale(1.1);
}
.mobile-menu__social-link:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}
.mobile-menu__social-icon {
  width: 24px;
  height: 24px;
}

.lang-switcher--mobile {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}
.lang-switcher--mobile .lang-switcher__btn {
  padding: 0.5rem 1rem;
  font-size: 1rem;
}

@media (max-width: 480px) {
  .persona-bg {
    background-position: center center;
    background-size: 80%;
  }
  .grossery-hero {
    min-height: auto;
    padding: 4vw 4vw;
  }
  .grossery-hero__header {
    flex-direction: column;
    gap: 6vw;
    margin-bottom: 2vw;
  }
  .grossery-hero__left {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4vw;
  }
  .grossery-hero__logo {
    width: 100%;
  }
  .grossery-hero__logo .logo--small .logo__icon {
    width: 150px;
    height: auto;
  }
  .grossery-hero__logo .logo--small .logo__tagline {
    font-size: 10px;
  }
  .grossery-hero__nav {
    display: none;
  }
  .grossery-hero__right {
    width: 100%;
    align-items: flex-start;
  }
  .grossery-hero__lang {
    width: 100%;
    margin-bottom: 4vw;
  }
  .grossery-hero__lang .lang-switcher--vertical {
    flex-direction: row;
    gap: 2vw;
  }
  .grossery-hero__lang .lang-switcher--vertical .lang-switcher__btn {
    padding: 2vw 4vw;
    font-size: 14px;
  }
  .grossery-hero__title-wrapper {
    width: 100%;
  }
  .grossery-hero__title {
    font-size: 11vmax;
    line-height: 1;
    margin-bottom: 2vw;
  }
  .grossery-hero__subtitle {
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 4vw;
  }
  .grossery-hero__description {
    width: 100%;
    padding: 0;
    margin-top: 6vw;
  }
  .grossery-hero__text {
    font-size: 14px;
    line-height: 1.6;
  }
  .grossery-hero__mission {
    width: 100%;
    padding: 0;
    margin-top: 6vw;
  }
  .grossery-hero__mission-title {
    font-size: 5vmax;
    margin-bottom: 4vw;
  }
  .grossery-hero__mission-text {
    font-size: 14px;
    line-height: 1.6;
  }
  .create-product-gross {
    padding: 8vw 4vw;
  }
  .create-product-gross-container {
    padding: 0;
  }
  .create-product-gross__grid {
    grid-template-columns: 1fr;
    gap: 4vw;
    margin-top: 6vw;
  }
  .create-product-gross__item {
    padding: 6vw;
  }
  .create-product-gross__item-title {
    font-size: 20px;
    margin-bottom: 3vw;
  }
  .create-product-gross__item-text {
    font-size: 14px;
    line-height: 1.6;
  }
  .mapping-market {
    padding: 8vw 4vw;
  }
  .mapping-market__subtitle {
    font-size: 16px;
    margin-bottom: 2vw;
  }
  .mapping-market__title {
    font-size: 28px;
    margin-bottom: 4vw;
  }
  .key-components {
    padding: 8vw 4vw;
  }
  .key-components__container {
    padding: 0;
  }
  .key-components__title {
    font-size: 28px;
    margin-bottom: 4vw;
  }
  .key-components__text {
    font-size: 14px;
    line-height: 1.6;
  }
  .key-carousel {
    padding: 8vw 4vw;
  }
  .key-carousel__container {
    padding: 0;
  }
  .key-carousel__grid {
    gap: 4vw;
    margin-top: 6vw;
  }
  .key-carousel__card {
    padding: 6vw;
  }
  .key-carousel__title {
    font-size: 20px;
    margin-bottom: 3vw;
    height: auto;
  }
  .key-carousel__text {
    font-size: 14px;
    height: auto;
    line-height: 1.6;
  }
  .key-carousel__img {
    height: 150px;
  }
  .persona-basis {
    padding: 8vw 4vw;
    margin-bottom: 6vw;
  }
  .persona-basis__container {
    padding: 0;
  }
  .persona-basis__title {
    font-size: 28px;
    margin-bottom: 6vw;
  }
  .persona-basis__items {
    display: flex;
    flex-direction: column;
    gap: 4vw;
  }
  .persona-basis__item {
    padding: 0;
    gap: 3vw;
    width: 100%;
  }
  .persona-basis__circle {
    width: 10px;
    height: 10px;
    flex-shrink: 0;
  }
  .persona-basis__text {
    font-size: 14px;
    width: 100%;
    line-height: 1.6;
  }
  .persona-citate {
    padding: 8vw 4vw;
    height: auto;
    min-height: 60vh;
  }
  .persona-citate__content {
    flex-direction: column;
    gap: 6vw;
  }
  .persona-citate__text {
    font-size: 14px;
    width: 100%;
    max-width: 100%;
    text-align: center;
    margin-bottom: 4vw;
    padding: 0;
    line-height: 1.6;
  }
  .persona-citate__img {
    width: 40vw;
  }
  .persona-citate__marquee {
    top: 10vmax;
  }
  .persona-citate__marquee-content {
    animation-duration: 20s, 3s;
  }
  .instrument-library {
    padding: 8vw 4vw;
  }
  .instrument-library__container {
    padding: 0;
  }
  .instrument-library__info {
    flex-direction: column;
    gap: 6vw;
    margin-top: 6vw;
  }
  .instrument-library__text {
    width: 100%;
  }
  .instrument-library__paragraph {
    font-size: 14px;
    margin-bottom: 4vw;
    line-height: 1.6;
  }
  .instrument-library__img {
    width: 100%;
    max-width: 400px;
  }
  .communication-analysis {
    padding: 8vw 4vw;
    background-position: center bottom;
    background-size: 50vmax auto;
  }
  .communication-analysis::before {
    display: none;
  }
  .communication-analysis__container {
    padding: 0;
  }
  .communication-analysis__content {
    width: 100%;
  }
  .communication-analysis__subtitle {
    font-size: 16px;
  }
  .communication-analysis__title {
    font-size: 28px;
    margin-bottom: 4vw;
  }
  .communication-analysis__text {
    font-size: 14px;
    margin-bottom: 4vw;
    line-height: 1.6;
  }
  .communication-analysis__model {
    margin-top: 6vw;
  }
  .communication-analysis__model-title {
    font-size: 20px;
    margin-bottom: 4vw;
  }
  .communication-analysis__items {
    gap: 4vw;
  }
  .communication-analysis__circle {
    width: 10px;
    height: 10px;
    flex-shrink: 0;
  }
  .communication-analysis__item-text {
    font-size: 14px;
    line-height: 1.6;
  }
  .communication-analysis__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
  }
  .persona-description {
    padding: 8vw 4vw;
    margin: 0;
  }
  .persona-description__container {
    padding: 0;
  }
  .persona-description__text {
    font-size: 14px;
    line-height: 1.6;
  }
  .persona-description__title {
    font-size: 24px;
  }
  .auri {
    padding: 8vw 4vw;
    background-image: none !important;
    background-position: center bottom;
    background-size: 40vmax;
  }
  .auri__container {
    padding: 0;
  }
  .auri__content {
    width: 100%;
  }
  .auri__subtitle {
    font-size: 16px;
  }
  .auri__title {
    font-size: 28px;
    margin-bottom: 4vw;
  }
  .auri__text {
    font-size: 14px;
    margin-bottom: 6vw;
    line-height: 1.6;
  }
  .auri__items {
    width: 100%;
    gap: 6vw;
  }
  .auri__circle {
    width: 10px;
    height: 10px;
    margin-top: 0;
    flex-shrink: 0;
  }
  .auri__item-text {
    font-size: 14px;
    line-height: 1.6;
  }
  .auri__image-mobile {
    display: block;
    margin-top: 8vw;
    text-align: center;
  }
  .auri__img-mobile {
    width: 100%;
    max-width: 300px;
    height: auto;
  }
  .persona-add-text {
    font-size: 14px;
  }
  .persol_marg {
    padding: 8vw 4vw !important;
  }
  .footer-persona {
    background-position: calc(100% - 2vmax) bottom;
    background-size: 30vmax;
  }
}
.privacy-hero {
  min-height: 100vh;
  padding: 40px 60px;
  background-color: #FFFFFF;
  position: relative;
}
@media (max-width: 768px) {
  .privacy-hero {
    padding: 20px;
  }
}
.privacy-hero__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .privacy-hero__header {
    flex-direction: column;
    margin-bottom: 40px;
  }
}
.privacy-hero__left {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 400px;
}
@media (max-width: 768px) {
  .privacy-hero__left {
    width: 100%;
    max-width: 100%;
  }
}
.privacy-hero__logo .logo--small .logo__icon {
  width: 200px;
  height: auto;
}
.privacy-hero__logo .logo--small .logo__tagline {
  font-size: 12px;
  margin-top: 8px;
}
@media (max-width: 768px) {
  .privacy-hero__nav {
    display: none;
  }
}
.privacy-hero__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media (max-width: 768px) {
  .privacy-hero__right {
    width: 100%;
    align-items: flex-start;
    margin-top: 20px;
  }
}
@media (max-width: 768px) {
  .privacy-hero__lang {
    display: none;
  }
}
.privacy-hero__content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .privacy-hero__content {
    padding: 0;
  }
}
.privacy-hero__title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 40px;
  color: #000000;
}
@media (max-width: 768px) {
  .privacy-hero__title {
    font-size: 32px;
    margin-bottom: 30px;
  }
}
.privacy-hero__text-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.privacy-hero__update-date {
  font-size: 14px;
  color: #666666;
  margin-bottom: 20px;
  font-style: italic;
}

.privacy-section {
  margin-bottom: 40px;
}
.privacy-section__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #000000;
}
@media (max-width: 768px) {
  .privacy-section__title {
    font-size: 20px;
    margin-bottom: 15px;
  }
}
.privacy-section__text {
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .privacy-section__text {
    font-size: 14px;
  }
}
.privacy-section__text strong {
  font-weight: 700;
  color: #000000;
}
.privacy-section__list {
  list-style: none;
  padding-left: 0;
  margin: 20px 0;
}
.privacy-section__list-item {
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}
@media (max-width: 768px) {
  .privacy-section__list-item {
    font-size: 14px;
  }
}
.privacy-section__list-item::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #F2704B;
  font-size: 20px;
  line-height: 1.6;
}

html[lang=ar] .privacy-section__list-item {
  padding-left: 0;
  padding-right: 25px;
}
html[lang=ar] .privacy-section__list-item::before {
  left: auto;
  right: 0;
}

.error-page {
  background-color: #FFF;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.error-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.error-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.error-bg__circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(242, 112, 75, 0.2);
  transition: transform 0.3s ease-out;
}
.error-bg__circle--1 {
  width: 200px;
  height: 200px;
  top: 10%;
  right: 15%;
  animation: float 8s ease-in-out infinite;
}
@media (min-width: 768px) {
  .error-bg__circle--1 {
    width: 300px;
    height: 300px;
  }
}
.error-bg__circle--2 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 10%;
  animation: float 10s ease-in-out infinite;
  animation-delay: 1s;
}
@media (min-width: 768px) {
  .error-bg__circle--2 {
    width: 250px;
    height: 250px;
  }
}
.error-bg__circle--3 {
  width: 100px;
  height: 100px;
  top: 50%;
  left: 5%;
  animation: float 12s ease-in-out infinite;
  animation-delay: 2s;
}
@media (min-width: 768px) {
  .error-bg__circle--3 {
    width: 180px;
    height: 180px;
  }
}
.error-bg__circle--4 {
  width: 120px;
  height: 120px;
  bottom: 30%;
  right: 20%;
  animation: float 9s ease-in-out infinite;
  animation-delay: 3s;
}
@media (min-width: 768px) {
  .error-bg__circle--4 {
    width: 200px;
    height: 200px;
  }
}
.error-bg__dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #F2704B;
  transition: transform 0.2s ease-out;
}
@media (min-width: 768px) {
  .error-bg__dot {
    width: 12px;
    height: 12px;
  }
}
.error-bg__dot--1 {
  top: 15%;
  left: 20%;
  animation: pulse 2s ease-in-out infinite;
}
.error-bg__dot--2 {
  top: 40%;
  right: 25%;
  animation: pulse 2.5s ease-in-out infinite;
  animation-delay: 0.5s;
}
.error-bg__dot--3 {
  bottom: 25%;
  left: 30%;
  animation: pulse 3s ease-in-out infinite;
  animation-delay: 1s;
}
.error-bg__dot--4 {
  top: 60%;
  right: 15%;
  animation: pulse 2.2s ease-in-out infinite;
  animation-delay: 1.5s;
}
.error-bg__dot--5 {
  bottom: 40%;
  right: 40%;
  animation: pulse 2.8s ease-in-out infinite;
  animation-delay: 2s;
}
.error-bg__dot--6 {
  top: 70%;
  left: 15%;
  animation: pulse 3.5s ease-in-out infinite;
  animation-delay: 2.5s;
}

.error-header {
  padding: 30px 20px;
  position: relative;
  z-index: 10;
}
@media (min-width: 768px) {
  .error-header {
    padding: 50px 60px;
  }
}
.error-header__logo {
  display: inline-block;
  animation: fadeInDown 0.8s ease-out;
}
.error-header__logo-icon {
  width: 180px;
  height: auto;
}
@media (min-width: 768px) {
  .error-header__logo-icon {
    width: 280px;
  }
}

.error-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  position: relative;
  z-index: 10;
}
@media (min-width: 768px) {
  .error-main {
    padding: 60px 60px;
  }
}

.error-content {
  max-width: 900px;
  width: 100%;
  text-align: center;
}

.error-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background-color: rgba(242, 112, 75, 0.05);
  border: 1px solid rgba(242, 112, 75, 0.2);
  border-radius: 50px;
  margin-bottom: 30px;
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}
@media (min-width: 768px) {
  .error-status {
    gap: 15px;
    padding: 10px 30px;
    margin-bottom: 40px;
  }
}
.error-status__label {
  font-family: "Lato", sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: #4A4A4A;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .error-status__label {
    font-size: 12px;
  }
}
.error-status__code {
  font-family: "Lato", sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #F2704B;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .error-status__code {
    font-size: 13px;
  }
}

.error-glitch {
  margin-bottom: 30px;
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
}
@media (min-width: 768px) {
  .error-glitch {
    margin-bottom: 40px;
  }
}
.error-glitch__number {
  font-family: "Lato", sans-serif;
  font-size: 100px;
  font-weight: 900;
  line-height: 1;
  color: #F2704B;
  letter-spacing: -0.02em;
  position: relative;
  display: inline-block;
}
@media (min-width: 768px) {
  .error-glitch__number {
    font-size: 160px;
  }
}
@media (min-width: 1024px) {
  .error-glitch__number {
    font-size: 220px;
  }
}
.error-glitch__number::before, .error-glitch__number::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.error-glitch__number.glitching {
  animation: glitchMain 0.2s linear;
}
.error-glitch__number.glitching::before {
  animation: glitchBefore 0.2s linear;
  color: #00FFFF;
  z-index: -1;
  opacity: 0.7;
}
.error-glitch__number.glitching::after {
  animation: glitchAfter 0.2s linear;
  color: #FF00FF;
  z-index: -2;
  opacity: 0.7;
}

.error-lab {
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease-out 0.6s backwards;
}
@media (min-width: 768px) {
  .error-lab {
    margin-bottom: 50px;
  }
}
.error-lab__title {
  font-family: "Lato", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  color: #1A1A1A;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px;
}
@media (min-width: 768px) {
  .error-lab__title {
    font-size: 38px;
    margin-bottom: 20px;
    gap: 10px;
  }
}
@media (min-width: 1024px) {
  .error-lab__title {
    font-size: 48px;
  }
}
.error-lab__bracket {
  color: #F2704B;
  font-weight: 300;
}
.error-lab__text {
  font-style: italic;
}
.error-lab__subtitle {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #F2704B;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .error-lab__subtitle {
    font-size: 16px;
    margin-bottom: 25px;
  }
}
.error-lab__description {
  max-width: 600px;
  margin: 0 auto;
}
.error-lab__description p {
  font-family: "Lato", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: #4A4A4A;
  margin: 0;
}
@media (min-width: 768px) {
  .error-lab__description p {
    font-size: 17px;
  }
}
@media (min-width: 1024px) {
  .error-lab__description p {
    font-size: 19px;
  }
}

.error-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 60px;
  animation: fadeInUp 0.8s ease-out 0.8s backwards;
}
@media (min-width: 768px) {
  .error-actions {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    margin-bottom: 80px;
  }
}

.error-action {
  font-family: "Lato", sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 16px 35px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .error-action {
    font-size: 16px;
    padding: 18px 40px;
  }
}
.error-action::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}
.error-action:hover::before {
  width: 300px;
  height: 300px;
}
.error-action--primary {
  background-color: #F2704B;
  color: #FFF;
  border: 2px solid #F2704B;
}
.error-action--primary .error-action__arrow {
  transition: transform 0.3s ease;
}
.error-action--primary:hover {
  background-color: #E05A36;
  border-color: #E05A36;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(242, 112, 75, 0.3);
}
.error-action--primary:hover .error-action__arrow {
  transform: translateX(5px);
}
.error-action--primary:focus {
  outline: 3px solid rgba(242, 112, 75, 0.3);
  outline-offset: 4px;
}
.error-action--secondary {
  background-color: transparent;
  color: #1A1A1A;
  border: 2px solid #E0E0E0;
}
.error-action--secondary .error-action__icon {
  transition: transform 0.3s ease;
}
.error-action--secondary:hover {
  background-color: #1A1A1A;
  color: #FFF;
  border-color: #1A1A1A;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(26, 26, 26, 0.15);
}
.error-action--secondary:hover .error-action__icon {
  transform: translateX(-5px);
}
.error-action--secondary:focus {
  outline: 3px solid rgba(26, 26, 26, 0.2);
  outline-offset: 4px;
}
.error-action__text {
  position: relative;
  z-index: 1;
}
.error-action__arrow, .error-action__icon {
  position: relative;
  z-index: 1;
}

.error-nav {
  animation: fadeInUp 0.8s ease-out 1s backwards;
}
.error-nav__title {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #4A4A4A;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .error-nav__title {
    font-size: 16px;
    margin-bottom: 35px;
  }
}
.error-nav__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}
@media (min-width: 480px) {
  .error-nav__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .error-nav__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}
.error-nav__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 25px 20px;
  background-color: #FFF;
  border: 2px solid #E0E0E0;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .error-nav__card {
    padding: 30px 25px;
    gap: 12px;
  }
}
.error-nav__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #F2704B, #FF8A65);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.error-nav__card:hover {
  border-color: #F2704B;
  box-shadow: 0 12px 30px rgba(242, 112, 75, 0.15);
}
.error-nav__card:hover::before {
  transform: scaleX(1);
}
.error-nav__card:hover .error-nav__number {
  color: #F2704B;
  transform: scale(1.1);
}
.error-nav__card:hover .error-nav__label {
  color: #1A1A1A;
}
.error-nav__card:focus {
  outline: 3px solid rgba(242, 112, 75, 0.3);
  outline-offset: 4px;
  border-color: #F2704B;
}
.error-nav__number {
  font-family: "Lato", sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: #E0E0E0;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .error-nav__number {
    font-size: 32px;
  }
}
.error-nav__label {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #4A4A4A;
  text-align: center;
  transition: color 0.3s ease;
}
@media (min-width: 768px) {
  .error-nav__label {
    font-size: 15px;
  }
}

.error-footer {
  padding: 30px 20px;
  border-top: 1px solid #E0E0E0;
  position: relative;
  z-index: 10;
}
@media (min-width: 768px) {
  .error-footer {
    padding: 40px 60px;
  }
}
.error-footer__content {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media (min-width: 768px) {
  .error-footer__content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.error-footer__info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.error-footer__year, .error-footer__address {
  font-family: "Lato", sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #4A4A4A;
  margin: 0;
}
@media (min-width: 768px) {
  .error-footer__year, .error-footer__address {
    font-size: 13px;
  }
}
.error-footer__email {
  font-family: "Lato", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #1A1A1A;
  text-decoration: none;
  transition: color 0.3s ease;
}
@media (min-width: 768px) {
  .error-footer__email {
    font-size: 13px;
  }
}
.error-footer__email:hover {
  color: #F2704B;
}
.error-footer__email:focus {
  outline: 2px solid rgba(242, 112, 75, 0.5);
  outline-offset: 3px;
}
.error-footer__socials {
  display: flex;
  gap: 18px;
}
@media (min-width: 768px) {
  .error-footer__socials {
    gap: 22px;
  }
}
.error-footer__social-link {
  display: inline-block;
  transition: transform 0.3s ease;
}
.error-footer__social-link:hover {
  transform: translateY(-4px);
}
.error-footer__social-link:focus {
  outline: 2px solid rgba(242, 112, 75, 0.5);
  outline-offset: 3px;
}
.error-footer__social-icon {
  width: 22px;
  height: 22px;
  display: block;
}
@media (min-width: 768px) {
  .error-footer__social-icon {
    width: 26px;
    height: 26px;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.3);
  }
}
@keyframes glitchMain {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(-2px, 2px);
  }
  40% {
    transform: translate(-2px, -2px);
  }
  60% {
    transform: translate(2px, 2px);
  }
  80% {
    transform: translate(2px, -2px);
  }
  100% {
    transform: translate(0);
  }
}
@keyframes glitchBefore {
  0% {
    clip-path: inset(40% 0 61% 0);
    transform: translate(-5px, 0);
  }
  20% {
    clip-path: inset(92% 0 1% 0);
    transform: translate(5px, 0);
  }
  40% {
    clip-path: inset(43% 0 1% 0);
    transform: translate(-5px, 0);
  }
  60% {
    clip-path: inset(25% 0 58% 0);
    transform: translate(5px, 0);
  }
  80% {
    clip-path: inset(54% 0 7% 0);
    transform: translate(-5px, 0);
  }
  100% {
    clip-path: inset(58% 0 43% 0);
    transform: translate(0);
  }
}
@keyframes glitchAfter {
  0% {
    clip-path: inset(50% 0 20% 0);
    transform: translate(5px, 0);
  }
  20% {
    clip-path: inset(10% 0 80% 0);
    transform: translate(-5px, 0);
  }
  40% {
    clip-path: inset(60% 0 30% 0);
    transform: translate(5px, 0);
  }
  60% {
    clip-path: inset(30% 0 70% 0);
    transform: translate(-5px, 0);
  }
  80% {
    clip-path: inset(80% 0 10% 0);
    transform: translate(5px, 0);
  }
  100% {
    clip-path: inset(70% 0 15% 0);
    transform: translate(0);
  }
}
/* Default theme styles */
