:root {
  --font-heading:
    "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  --font-body:
    "Open Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  --font-accent:
    "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  --font-footer-heading:
    "Nobile", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;

  --color-white: #ffffff;
  --color-black: #000000;
  --color-green: #008001;
  --color-green-mobile: #0b8138;
  --color-blue: #10618c;
  --color-navy: #01124d;
  --color-footer: #002249;
  --color-heading-dark: #1b1e1b;
  --color-text: #494949;
  --color-muted: #787878;
  --color-nav: #515151;
  --color-border: #cacaca;
  --color-surface: #fdfdfd;
  --color-surface-blue: #f9fbff;
  --color-footer-muted: #b7b7b7;

  --shadow-soft: 0 1px 4px rgba(0, 0, 0, 0.25);
  --shadow-footer: 0 -2px 7px rgba(0, 0, 0, 0.02);

  --container-wide: 77.5rem;
  --container-medium: 67rem;
  --section-gap: clamp(4rem, 8.4vw, 7.5rem);
  --page-padding: clamp(1rem, 5.6vw, 4.9rem);
  --radius-card: 0.75rem;
  --ease-standard: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-reveal: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-base: 240ms var(--ease-standard);
  --header-height: 5.5625rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1.5rem);
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--color-white);
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

a {
  color: inherit;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

.fursa-page {
  min-height: 100vh;
  overflow-x: clip;
}

#about,
#team,
#projects,
#experts,
#contacts {
  scroll-margin-top: 0px;
}

.fursa-section {
  padding-inline: var(--page-padding);
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(0.75rem);
  transition:
    opacity 620ms var(--ease-reveal),
    transform 620ms var(--ease-reveal);
}

.about-section.scroll-reveal {
  transform: translateY(1rem);
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fursa-container {
  width: min(100%, var(--container-wide));
  margin-inline: auto;
}

.fursa-stack {
  display: flex;
  flex-direction: column;
}

.fursa-grid {
  display: grid;
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--color-blue);
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4.375rem);
  font-weight: 700;
  line-height: 1;
  color: var(--color-navy);
}

.section-text {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: 1.75rem;
  padding: 0.875rem 1.375rem;
  border-radius: 999rem;
  background: var(--color-green);
  color: var(--color-white);
  text-decoration: none;
  font-weight: 600;
  transition: opacity var(--transition-base);
}

.button:hover {
  opacity: 0.84;
}

.legal-page-body {
  background: var(--color-white);
}

.legal-page {
  min-height: 100vh;
  padding: clamp(1.5rem, 4vw, 3rem) var(--page-padding) clamp(4rem, 8vw, 7.5rem);
}

.legal-page__logo {
  position: relative;
  width: 10.25rem;
  height: 3.0125rem;
  margin-inline: auto;
  display: block;
  overflow: hidden;
}

.legal-page__logo img {
  position: absolute;
  top: -168.85%;
  left: -15.42%;
  width: 130.12%;
  height: 442.62%;
  max-width: none;
  object-fit: cover;
}

.legal-page__container {
  width: min(100%, 52rem);
  margin: clamp(4rem, 8vw, 7.5rem) auto 0;
}

.legal-page__title {
  margin: 0 0 2rem;
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-navy);
  letter-spacing: -0.03em;
}

.legal-page__content {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-text);
}

.legal-page__content > * + * {
  margin-top: 1rem;
}

.legal-page__content h2 {
  margin-top: 2.5rem;
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-heading-dark);
}

.legal-page__content h3 {
  margin-top: 2rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-heading-dark);
}

.legal-page__content p {
  margin-bottom: 0;
}

.legal-page__content ul,
.legal-page__content ol {
  padding-left: 1.25rem;
}

.legal-page__content li + li {
  margin-top: 0.5rem;
}

.legal-page__content a {
  color: var(--color-blue);
  text-decoration: underline;
  text-underline-offset: 0.16em;
  transition: color var(--transition-base);
}

.legal-page__content a:hover,
.legal-page__content a:focus-visible {
  color: var(--color-green);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  padding: 1.5rem var(--page-padding) 0.75rem;
  background: transparent;
  pointer-events: none;
  transition:
    background-color var(--transition-base),
    box-shadow var(--transition-base);
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  background: var(--color-white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  padding: 1.5rem var(--page-padding) 0;
}

.site-header.is-scrolled:not(.is-menu-open) {
  padding: 1.5rem var(--page-padding) 0.75rem;
}

body.admin-bar .site-header {
  top: 2rem;
}

.site-header__inner {
  width: min(100%, var(--container-wide));
  min-height: 2.5625rem;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(8.6875rem, 1fr) auto minmax(8.6875rem, 1fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 2.875rem);
  pointer-events: auto;
}

.site-header__logo {
  position: relative;
  width: 8.6875rem;
  height: 2.554rem;
  overflow: hidden;
  flex: 0 0 auto;
}

.site-header__logo-image {
  position: absolute;
  top: -168.85%;
  left: -15.42%;
  width: 130.12%;
  height: 442.62%;
  max-width: none;
  object-fit: cover;
}

.site-header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 3.2vw, 2.875rem);
}

.site-header__nav a {
  display: inline-block;
  transform-origin: center;
  transition:
    color var(--transition-base),
    transform var(--transition-base);
}

.site-header__nav a:hover,
.site-header__nav a:focus-visible {
  color: var(--color-blue);
  transform: translateY(-1px) scale(1.04);
}

.site-header__nav a,
.site-header__languages a,
.site-header__languages span {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--color-nav);
  text-decoration: none;
}

.site-header__languages {
  padding: 8px 24px;
  min-width: 6.25rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.25rem;
  color: var(--color-nav);
}

.site-header__languages a,
.site-header__languages span {
  font-weight: 400;
  text-transform: uppercase;
}

.site-header__languages .is-active {
  color: var(--color-green);
}

.site-header__menu {
  display: none;
}

.mobile-navigation {
  display: none;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding: 9.875rem var(--page-padding) 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  background: var(--color-white);
}

.hero-section__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: var(--color-white);
  background-image: url("../images/hero-desktop.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-section__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 1;
  pointer-events: none;
}

.hero-section__content,
.hero-section__note {
  position: relative;
  z-index: 1;
}

.hero-section__content {
  width: min(100%, var(--container-wide));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.hero-section__intro,
.hero-section__subtitle,
.hero-section__title {
  font-family: var(--font-heading);
  letter-spacing: -0.07em;
}

.hero-section__intro {
  width: min(100%, 72.75rem);
  font-size: clamp(1.5rem, 1.8vw, 1.625rem);
  font-weight: 500;
  line-height: 0.989;
  color: var(--color-black);
}

.hero-section__intro span {
  color: var(--color-blue);
}

.hero-section__title {
  width: min(100%, 76.625rem);
  font-size: clamp(3.5rem, 5.35vw, 4.75rem);
  font-weight: 700;
  line-height: 1.089;
  color: var(--color-green);
}

.hero-section__subtitle {
  width: min(100%, 35.25rem);
  font-size: clamp(1.5rem, 1.8vw, 1.625rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-black);
}

.hero-section__note {
  width: min(100%, 34.125rem);
  margin-top: auto;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.35;
  color: var(--color-text);
  text-align: center;
}

@media (min-width: 768px) and (max-height: 790px) {
  .hero-section {
    padding-top: clamp(6.5rem, 13vh, 8rem);
    padding-bottom: 1.25rem;
  }

  .hero-section__content {
    gap: 1rem;
  }

  .hero-section__intro,
  .hero-section__subtitle {
    font-size: clamp(1.25rem, 1.6vw, 1.45rem);
  }

  .hero-section__title {
    font-size: clamp(3rem, 4.7vw, 4.25rem);
    line-height: 1.05;
  }

  .hero-section__note {
    width: min(100%, 31rem);
    font-size: 0.875rem;
  }
}

@media (min-width: 768px) and (max-height: 740px) {
  .hero-section__note {
    display: none;
  }
}

.about-section {
  padding: var(--section-gap) var(--page-padding) 0;
  background: var(--color-white);
}

.about-section__container {
  width: min(100%, 80.75rem);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}

.about-section__main {
  display: grid;
  grid-template-columns: minmax(20rem, 0.92fr) minmax(24rem, 1fr);
  gap: clamp(1.25rem, 3vw, 3.5rem);
  align-items: center;
}

.about-section__content {
  max-width: 39.1875rem;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2.6rem;
  position: relative;
  z-index: 1;
}

.about-section__text {
  width: min(100%, 35.75rem);
  display: flex;
  flex-direction: column;
  gap: 1.625rem;
}

.about-section__eyebrow {
  line-height: 1.35;
}

.about-section__title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 4.86vw, 4.375rem);
  font-weight: 700;
  line-height: 1;
  color: var(--color-navy);
}

.about-section__description {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.35;
  color: var(--color-muted);
}

.about-section__list {
  margin: 0;
  padding: 0;
  width: min(100%, 30.6875rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
}

.about-section__list li {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.35;
  color: var(--color-muted);
}

.about-section__list li::before {
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  flex: 0 0 auto;
  background: url("../images/icons/pin.svg") center / contain no-repeat;
}

.about-section__stats {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 4.4vw, 3.9375rem);
}

.about-stat {
  position: relative;
  min-height: 3.8125rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  text-align: center;
  text-transform: uppercase;
}

.about-stat + .about-stat {
  padding-left: clamp(1.5rem, 4.4vw, 3.9375rem);
}

.about-stat + .about-stat::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 3.8125rem;
  background: var(--color-blue);
  transform: translateY(-50%);
}

.about-stat strong {
  font-family: var(--font-body);
  font-size: 2.1875rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.03em;
  color: var(--color-black);
}

.about-stat span,
.about-stat small {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: -0.03em;
  color: var(--color-muted);
}

.about-stat span {
  white-space: nowrap;
}

.about-stat__link {
  border: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  background: transparent;
  color: var(--color-muted);
  font: inherit;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  transform-origin: center;
  transition:
    color var(--transition-base),
    transform var(--transition-base);
}

.about-stat__link span {
  color: currentColor;
}

.about-stat__link img {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  filter: brightness(0) saturate(100%);
  opacity: 0.76;
  transition:
    filter var(--transition-base),
    opacity var(--transition-base);
}

.about-stat__link:hover,
.about-stat__link:focus-visible {
  color: var(--color-black);
  transform: scale(1.06);
}

.about-stat__link:hover img,
.about-stat__link:focus-visible img {
  opacity: 1;
}

.about-stat__popover {
  position: absolute;
  top: 50%;
  left: calc(100% + 0.4rem);
  bottom: auto;
  z-index: 3;
  min-width: 130px;
  padding: 0;
  display: grid;
  gap: 0.25rem;
  background: var(--color-white);
  box-shadow: 0 0.5rem 1.5rem rgba(0, 34, 73, 0.08);
  opacity: 0;
  pointer-events: none;
  transform: translate(-0.375rem, -50%);
  transition:
    opacity 220ms var(--ease-standard),
    transform 220ms var(--ease-standard);
}

.about-stat__popover::before {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  width: 0.75rem;
  height: 100%;
}

.about-stat--patents:hover .about-stat__popover,
.about-stat--patents:focus-within .about-stat__popover,
.about-stat--patents.is-open .about-stat__popover {
  opacity: 1;
  pointer-events: auto;
  transform: translate(0, -50%);
}

.about-stat__popover a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.45rem 0.5rem;
  color: var(--color-black);
  text-decoration: none;
  text-transform: none;
  transition:
    background-color 220ms var(--ease-standard),
    color 220ms var(--ease-standard),
    transform 220ms var(--ease-standard);
}

.about-stat__popover a:hover,
.about-stat__popover a:focus-visible {
  background-color: rgba(0, 34, 73, 0.06);
  color: var(--color-blue);
  transform: translateX(0.125rem);
}

.about-stat__popover span {
  font-size: 0.875rem;
  color: currentColor;
  text-transform: none;
}

.about-stat__popover img {
  width: 0.875rem;
  height: 0.875rem;
  flex: 0 0 auto;
  filter: brightness(0) saturate(100%);
  transition: transform 220ms var(--ease-standard);
}

.about-stat__popover a:hover img,
.about-stat__popover a:focus-visible img {
  transform: translateX(0.125rem);
}

.about-stat small {
  width: 15.25rem;
  margin-top: -2px;
}

.about-section__visual {
  min-width: 0;
  padding: 0 0.875rem 0.875rem 0;
  display: flex;
  justify-content: flex-end;
}

.about-collage {
  width: min(100%, 42.6875rem);
  margin: 0;
  display: grid;
  grid-template-columns: 32.7% 60.43% 6.87%;
  grid-template-rows: 51.82% 8.4% 39.78%;
  aspect-ratio: 683 / 631;
}

.about-collage__card {
  display: grid;
  min-width: 0;
  min-height: 0;
}

.about-collage__card::after,
.about-collage__card img {
  grid-area: 1 / 1;
}

.about-collage__card::after {
  content: "";
  position: relative;
  z-index: 0;
}

.about-collage__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.about-collage__card--main {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
  padding: 0 0.875rem 0.875rem 0;
}

.about-collage__card--main::after {
  margin: 0.875rem -0.875rem -0.875rem 0.875rem;
  background: var(--color-blue);
}

.about-collage__card--secondary {
  grid-column: 2 / 4;
  grid-row: 2 / 4;
  padding: 0 0.875rem 0.875rem 0;
}

.about-collage__card--secondary::after {
  margin: 0.875rem -0.875rem -0.875rem 0.875rem;
  background: var(--color-green);
}

.about-section__industries {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 0.485rem;
}

.about-section__industries span {
  padding: 0.45rem 0.695rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: var(--color-surface);
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--color-black);
  text-align: center;
  white-space: nowrap;
}

.about-section__industries.is-animated span {
  opacity: 0;
  transform: translateY(0.375rem);
  transition:
    opacity 420ms var(--ease-reveal),
    transform 420ms var(--ease-reveal),
    border-color var(--transition-base),
    background-color var(--transition-base);
}

.about-section__industries.is-animated.is-visible span {
  opacity: 1;
  transform: translateY(0);
}

.team-section {
  margin-top: 7.5rem;
  padding-inline: var(--page-padding);
}

.team-section__container {
  width: min(100%, 80.75rem);
  min-height: 29.4375rem;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  position: relative;
}

.team-section__panel {
  width: min(72%, 58.125rem);
  min-height: 29.4375rem;
  padding: 3.75rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #f2f4f6;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}

.team-section__intro {
  width: min(100%, clamp(25.5rem, 36vw, 35rem));
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.team-section__title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 4.2vw, 3.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-navy);
}

.team-section__description {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.35;
  color: var(--color-muted);
}

.team-slider {
  width: min(49.46%, 39.9375rem);
  position: absolute;
  top: 4.1875rem;
  right: 0;
}

.team-slider__viewport {
  overflow: hidden;
  touch-action: pan-y;
}

.team-slider__track {
  display: flex;
  transition: transform 360ms var(--ease-standard);
  will-change: transform;
}

.team-card {
  position: relative;
  width: 100%;
  min-width: 100%;
  min-height: 21.0625rem;
  padding: 1.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.625rem;
  overflow: hidden;
  background: #d0d4e2;
}

.team-card--oleg {
  background: #d0d4e2;
}

.team-card--yulia {
  background: #cfd3e2;
}

.team-card--juan {
  background: #d1d5e3;
}

.team-card--phil {
  background: #dadeeb;
}

.team-card--martin {
  background: #cfd4e3;
}

.team-card--kristina {
  background: #d5d9e7;
}

.team-card__image {
  width: 41%;
  max-width: 16.375rem;
  height: 19.0625rem;
  flex: 0 0 auto;
  object-fit: contain;
}

.team-card__content {
  width: min(100%, 21.8125rem);
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.team-card__project-logo {
  position: absolute;
  top: 1.25rem;
  right: 1rem;
  z-index: 1;
  display: block;
  transition:
    opacity var(--transition-base),
    transform var(--transition-base);
}

.team-card__project-logo:hover,
.team-card__project-logo:focus-visible {
  opacity: 0.86;
  transform: translateY(-1px) scale(1.03);
}

.team-card__project-logo--kryo {
  width: 7.30225rem;
}

.team-card__project-logo--maison {
  width: 7.34rem;
}

.team-card__project-logo img {
  width: 100%;
  height: auto;
}

.team-card__heading {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.team-card__heading h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.2vw, 2.875rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-heading-dark);
}

.team-card__heading::after {
  content: "";
  width: 9.375rem;
  height: 0.125rem;
  display: block;
  order: 2;
  background: var(--color-green);
}

.team-card__heading p {
  order: 3;
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--color-black);
  text-transform: uppercase;
}

.team-card__heading a {
  color: var(--color-blue);
  text-decoration: underline;
  text-decoration-thickness: 0.07em;
  text-underline-offset: 0.12em;
  transition: color var(--transition-base);
}

.team-card__heading a:hover,
.team-card__heading a:focus-visible {
  color: var(--color-green);
}

.team-card__text {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.35;
  color: var(--color-muted);
}

.team-slider__controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 961px) {
  body.lang-fr .team-slider__controls {
    transform: translateY(1.5rem);
  }
}

.team-slider__button {
  width: 3.125rem;
  height: 3.125rem;
  padding: 0;
  border: 1px solid var(--color-nav);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--color-nav);
  cursor: pointer;
  transform-origin: center;
  transition:
    border-color var(--transition-base),
    color var(--transition-base),
    transform var(--transition-base);
}

.team-slider__button:hover,
.team-slider__button:focus-visible {
  border-color: var(--color-black);
  color: var(--color-black);
  transform: scale(1.04);
}

.team-slider__button span {
  position: relative;
  width: 1.375rem;
  height: 1.375rem;
  display: block;
  font-size: 0;
  line-height: 0;
  transition: transform var(--transition-base);
}

.team-slider__button span::before,
.team-slider__button span::after {
  content: "";
  position: absolute;
  top: 50%;
  display: block;
}

.team-slider__button span::before {
  left: 50%;
  width: 1rem;
  height: 0.125rem;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.team-slider__button span::after {
  width: 0.5rem;
  height: 0.5rem;
  border-top: 0.125rem solid currentColor;
  border-right: 0.125rem solid currentColor;
}

.team-slider__button[data-team-prev] span::after {
  left: 0.1875rem;
  transform: translateY(-50%) rotate(-135deg);
}

.team-slider__button[data-team-next] span::after {
  right: 0.1875rem;
  transform: translateY(-50%) rotate(45deg);
}

.projects-section {
  margin-top: 7.5rem;
  padding-inline: var(--page-padding);
}

.projects-section__container {
  width: min(100%, 81.6875rem);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.6875rem;
}

.projects-section__intro {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
  text-align: center;
}

.projects-section__eyebrow {
  font-size: 1.5rem;
}

.projects-section__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
}

.projects-section__title {
  max-width: 81.6875rem;
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(3rem, 4.167vw, 3.75rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.3px;
  color: var(--color-navy);
}

.projects-section__description {
  width: min(100%, 41.0625rem);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.35;
  color: var(--color-muted);
}

.projects-grid {
  width: min(100%, 77.5625rem);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1875rem;
}

.project-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--color-surface);
  transform-origin: center;
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base);
}

.project-card:hover,
.project-card:focus-within {
  box-shadow: var(--shadow-soft);
  transform: scale(1.015);
}

.project-card__media {
  height: 21.125rem;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.project-card__background {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-card__logo {
  grid-area: 1 / 1;
  position: relative;
  z-index: 1;
}

.project-card__logo--kryo {
  width: min(69%, 26.25rem);
}

.project-card__logo--maison {
  width: min(60%, 22.75rem);
}

.project-card__body {
  padding: 16px 24px 24px;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

.project-card__content {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.project-card__content h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-heading-dark);
}

.project-card__content p {
  max-width: 31rem;
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--color-black);
  text-transform: uppercase;
}

.project-card__button {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.35;
  color: var(--color-blue);
  text-decoration: none;
  text-transform: uppercase;
  transform-origin: left center;
  transition:
    color var(--transition-base),
    transform var(--transition-base);
}

.project-card__button:hover,
.project-card__button:focus-visible {
  color: var(--color-green);
  transform: scale(1.06);
}

.project-card__button img {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  transition: filter var(--transition-base);
}

.project-card__button:hover img,
.project-card__button:focus-visible img {
  filter: brightness(0) saturate(100%) invert(25%) sepia(99%) saturate(1695%)
    hue-rotate(101deg) brightness(92%) contrast(102%);
}

.experts-section {
  margin-top: 7.5rem;
  padding-inline: var(--page-padding);
}

.experts-section__container {
  width: min(100%, 77.4375rem);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.75rem;
}

.experts-section__intro {
  width: min(100%, 64.75rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  text-align: center;
}

.experts-section__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(3rem, 4.167vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-navy);
}

.experts-section__description {
  width: min(100%, 54.6875rem);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.35;
  color: var(--color-muted);
}

.experts-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.expert-card {
  min-width: 0;
  min-height: 24.125rem;
  display: grid;
  grid-template-columns: clamp(11rem, 17.5vw, 13.5625rem) minmax(0, 1fr);
  column-gap: clamp(1rem, 2vw, 2rem);
  overflow: hidden;
  background: var(--color-surface-blue);
  box-shadow: var(--shadow-soft);
}

.expert-card__image {
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}

.expert-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.expert-card__body {
  min-width: 0;
  width: min(100%, 20.6875rem);
  padding: 1.5rem clamp(1rem, 2vw, 1.5rem) 1.5rem 0;
  justify-self: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
}

.expert-card__heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.expert-card__icon {
  width: 1.5rem;
  height: 1.5rem;
}

.expert-card__heading h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-heading-dark);
}

.expert-card__heading p {
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--color-black);
  text-transform: uppercase;
}

.expert-card__list {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
}

.expert-card__list li {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.35;
  color: var(--color-muted);
}

.expert-card__list li::before {
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  flex: 0 0 auto;
  background: url("../images/icons/pin.svg") center / contain no-repeat;
}

.site-footer {
  min-height: 21.375rem;
  margin-top: 7.5rem;
  padding: 3.75rem var(--page-padding) 0.75rem;
  display: flex;
  flex-direction: column;
  background: var(--color-footer);
  color: var(--color-white);
  box-shadow: var(--shadow-footer);
}

.site-footer__container {
  width: min(100%, var(--container-wide));
  margin-inline: auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(3rem, 7vw, 6.25rem);
}

.site-footer__brand {
  width: min(100%, 25.0625rem);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.site-footer__logo {
  width: 14.625rem;
  height: 3.8125rem;
  display: block;
  flex: 0 0 auto;
}

.site-footer__logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-footer__brand p,
.site-footer__column a,
.site-footer__column p,
.site-footer__column li {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.35;
  color: var(--color-footer-muted);
  text-transform: uppercase;
}

.site-footer__brand p {
  width: min(100%, 25.0625rem);
}

.site-footer__columns {
  display: flex;
  align-items: flex-start;
  gap: clamp(3rem, 6.944vw, 6.25rem);
}

.site-footer__column {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  font-style: normal;
}

.site-footer__column h2 {
  margin: 0;
  font-family: var(--font-footer-heading);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.35;
  color: var(--color-white);
}

.site-footer__column ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
}

.site-footer__column a {
  text-decoration: none;
  transition: color var(--transition-base);
}

.site-footer__column a:hover,
.site-footer__column a:focus-visible {
  color: var(--color-white);
}

.site-footer__column p,
.site-footer__column a {
  overflow-wrap: anywhere;
}

.site-footer__contact {
  width: 163px;
}

.site-footer__contact p {
  width: 100%;
}

.site-footer__additional {
  width: 150px;
}

.site-footer__socials {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: -20px;
}

.site-footer__icon {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  transition:
    opacity var(--transition-base),
    transform var(--transition-base);
}

.site-footer__icon:hover,
.site-footer__icon:focus-visible {
  opacity: 0.95;
  transform: translateY(-2px) scale(1.04);
}

.site-footer__icon img {
  width: 100%;
  height: 100%;
}

.site-footer__copyright {
  width: 100%;
  margin-top: 98px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.35;
  color: var(--color-footer-muted);
  text-align: center;
}

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal,
  .about-section__industries.is-animated span,
  .site-footer__icon {
    transition: none;
  }

  .scroll-reveal,
  .scroll-reveal.is-visible,
  .about-section__industries.is-animated span,
  .about-section__industries.is-animated.is-visible span {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 2.875rem;
  }
}

@media (max-width: 1100px) {
  .about-section {
    padding: var(--section-gap) 24px 0;
  }

  .team-section {
    padding-inline: 24px;
  }

  .team-section__panel {
    width: 76%;
  }

  .team-section__title {
    font-size: clamp(2.5rem, 4.7vw, 3.25rem);
  }

  .team-section__description {
    font-size: 0.875rem;
  }

  .team-slider {
    width: min(49.46%, 39.9375rem);
  }
}

@media (max-width: 960px) {
  .about-section__main {
    grid-template-columns: minmax(0, 1fr);
    gap: 3rem;
  }

  .about-section__content,
  .about-section__text,
  .about-section__list {
    max-width: none;
    width: 100%;
  }

  .about-section__content {
    display: contents;
  }

  .about-section__text {
    order: 1;
  }

  .about-section__list {
    order: 2;
  }

  .about-section__visual {
    justify-content: center;
    order: 3;
  }

  .about-section__stats {
    order: 4;
    justify-content: center;
  }

  .about-section__industries {
    order: 5;
  }

  .team-section__container {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .team-section__panel {
    width: 100%;
    min-height: 22rem;
    padding-bottom: 5.5rem;
    display: flex;
    gap: 2rem;
  }

  .team-section__intro {
    width: min(100%, 35rem);
  }

  .team-slider {
    width: min(100%, 39.9375rem);
    margin-top: -4rem;
    position: relative;
    top: auto;
    right: auto;
    justify-self: center;
    align-self: center;
    order: 2;
  }

  .team-slider__controls {
    margin-top: 1rem;
    justify-content: center;
    order: 3;
  }

  .projects-grid {
    grid-template-columns: minmax(0, 1fr);
    width: min(100%, 38rem);
  }

  .experts-grid {
    grid-template-columns: minmax(0, 1fr);
    width: min(100%, 38rem);
  }

  .site-footer {
    min-height: auto;
    padding-bottom: 1.25rem;
  }

  .site-footer__container {
    flex-direction: column;
    gap: 2.5rem;
  }

  .site-footer__brand {
    width: 100%;
    max-width: none;
  }

  .site-footer__brand p {
    width: min(100%, 44rem);
  }

  .site-footer__columns {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1.5rem, 5vw, 3rem);
  }

  .site-footer__column,
  .site-footer__contact,
  .site-footer__additional {
    width: auto;
  }
}

@media (max-width: 767px) {
  :root {
    --page-padding: 0.75rem;
    --header-height: 4.125rem;
  }

  .site-header {
    padding-top: 1.5rem;
  }

  .site-header__inner {
    width: 100%;
    min-height: 2.5625rem;
    grid-template-columns: 1fr auto;
  }

  .site-header__nav,
  .site-header__languages {
    display: none;
  }

  .site-header__menu {
    width: 1.5rem;
    height: 1.5rem;
    padding: 0;
    border: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 0.375rem;
    background: transparent;
    color: var(--color-nav);
    cursor: pointer;
    justify-self: end;
  }

  .site-header__menu span {
    width: 24px;
    height: 0.0625rem;
    display: block;
    background: currentColor;
    transform-origin: center;
    transition:
      transform var(--transition-base),
      opacity var(--transition-base),
      width var(--transition-base);
  }

  .site-header__menu span:nth-child(2) {
    width: 16px;
  }

  .site-header__menu span:nth-child(3) {
    width: 8px;
  }

  .site-header__menu.is-open {
    gap: 0;
  }

  .site-header__menu.is-open span {
    width: 1.5rem;
  }

  .site-header__menu.is-open span:nth-child(1) {
    transform: translateY(0.0625rem) rotate(45deg);
  }

  .site-header__menu.is-open span:nth-child(2) {
    opacity: 0;
  }

  .site-header__menu.is-open span:nth-child(3) {
    transform: translateY(-0.0625rem) rotate(-45deg);
  }

  .mobile-navigation {
    width: calc(100% + (var(--page-padding) * 2));
    margin: 0.875rem calc(var(--page-padding) * -1) 0;
    padding: 0.875rem var(--page-padding) 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    border-bottom: 1px solid rgba(202, 202, 202, 0.7);
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.04);
    background: var(--color-white);
    opacity: 0;
    transform: translateY(-0.5rem);
    pointer-events: none;
    transition:
      opacity var(--transition-base),
      transform var(--transition-base);
  }

  .mobile-navigation.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .mobile-navigation[hidden] {
    display: none;
  }

  .mobile-navigation__links {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
  }

  .mobile-navigation__links a {
    padding: 0.5rem 0;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--color-nav);
    text-decoration: none;
  }

  .mobile-navigation__languages {
    padding-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    border-top: 1px solid rgba(202, 202, 202, 0.2);
  }

  .mobile-navigation__languages a,
  .mobile-navigation__languages span {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.35;
    color: var(--color-nav);
    text-decoration: none;
    text-transform: uppercase;
  }

  .mobile-navigation__languages .is-active {
    color: var(--color-green);
  }

  .hero-section {
    min-height: 100vh;
    min-height: 100svh;
    padding: 6.5625rem 0.75rem 3rem;
  }

  .hero-section__content {
    width: 100%;
    gap: 2rem;
  }

  .hero-section__intro,
  .hero-section__subtitle,
  .hero-section__title {
    width: 100%;
  }

  .hero-section__intro {
    font-size: 1.125rem;
    line-height: 0.989;
    letter-spacing: -0.07em;
  }

  .hero-section__title {
    font-size: clamp(2.4rem, 11.1vw, 2.5rem);
    line-height: 1.199;
    letter-spacing: -0.09em;
    color: var(--color-green-mobile);
  }

  .hero-section__subtitle {
    font-size: 1.125rem;
    line-height: 1.2;
    letter-spacing: -0.07em;
  }

  .hero-section__note {
    display: none;
  }

  .about-stat small {
    width: 190px;
  }

  .about-section {
    padding: 60px 12px 0;
  }

  .about-section__container,
  .about-section__main {
    gap: 2rem;
  }
}

@media (max-width: 600px) {
  .hero-section__media {
    background-image: url("../images/hero-mobile.png");
    background-position: center bottom;
  }

  .hero-section__video {
    object-position: center bottom;
  }
}

@media (max-width: 767px) and (max-height: 745px) {
  .hero-section {
    padding-top: 5.25rem;
    padding-bottom: 2rem;
  }

  .hero-section__content {
    gap: 1.25rem;
  }

  .hero-section__intro,
  .hero-section__subtitle {
    font-size: 1rem;
  }

  .hero-section__title {
    font-size: 2.125rem;
    line-height: 1.1;
  }
}

@media (max-width: 767px) and (max-height: 680px) {
  .hero-section {
    padding-top: 4.75rem;
    padding-bottom: 1.5rem;
  }

  .hero-section__content {
    gap: 1rem;
  }

  .hero-section__intro,
  .hero-section__subtitle {
    font-size: 0.9375rem;
  }

  .hero-section__title {
    font-size: 1.9375rem;
  }
}

@media (max-width: 600px) {
  .team-section {
    margin-top: 40px;
    padding: 0 var(--page-padding) 40px;
    background: #f2f4f6;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.15);
  }

  .team-section__container {
    width: 100%;
    min-height: 0;
    gap: 0;
    display: flex;
    flex-direction: column;
    background: transparent;
    box-shadow: none;
  }

  .team-section__panel {
    min-height: 0;
    padding: 2.5rem 0 0;
    display: contents;
    box-shadow: none;
    background: transparent;
  }

  .team-section__intro {
    width: min(100%, 21rem);
    margin-inline: auto;
    padding-top: 2.5rem;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
  }

  .team-section__title {
    font-size: 2.25rem;
    line-height: 1.1;
  }

  .team-section__description {
    margin-top: 2px;
    font-size: 13px;
    line-height: 18px;
  }

  .team-slider {
    width: calc(100vw - var(--page-padding));
    margin-top: 1.625rem;
    justify-self: start;
    align-self: flex-start;
    order: 2;
  }

  .team-slider__viewport {
    width: 100%;
    overflow: hidden;
  }

  .team-slider__track {
    gap: 0.75rem;
  }

  .team-card {
    width: 16.8125rem;
    min-width: 16.8125rem;
    min-height: 31.375rem;
    padding: 1.5rem 0.75rem;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
  }

  .team-card__image {
    width: 15.0625rem;
    max-width: none;
    height: 17.5625rem;
    margin-bottom: -0.625rem;
  }

  .team-card__content {
    width: 100%;
    gap: 1.25rem;
  }

  .team-card__project-logo {
    top: 1rem;
    right: 0.75rem;
  }

  .team-card__project-logo--kryo,
  .team-card__project-logo--maison {
    width: 5.5rem;
  }

  .team-card__heading h3 {
    font-size: 2rem;
    line-height: 1.1;
  }

  .team-card__heading p {
    font-size: 0.75rem;
  }

  .team-card__text {
    font-size: 0.75rem;
  }

  .team-slider__controls {
    margin-top: 0.7rem;
    justify-content: center;
    align-self: center;
    order: 3;
  }

  .team-slider__button {
    width: 2rem;
    height: 2rem;
  }

  .team-slider__button span {
    width: 1rem;
    height: 1rem;
  }

  .team-slider__button span::before {
    width: 0.75rem;
    height: 0.09375rem;
  }

  .team-slider__button span::after {
    width: 0.375rem;
    height: 0.375rem;
    border-top-width: 0.09375rem;
    border-right-width: 0.09375rem;
  }

  .team-slider__button[data-team-prev] span::after {
    left: 0.125rem;
  }

  .team-slider__button[data-team-next] span::after {
    right: 0.125rem;
  }

  .projects-section {
    margin-top: 60px;
    padding-inline: var(--page-padding);
  }

  .projects-section__container {
    width: 100%;
    gap: 1.25rem;
  }

  .projects-section__intro {
    min-height: 18.4375rem;
    gap: 0.75rem;
  }

  .projects-section__eyebrow {
    font-size: 0.875rem;
  }

  .projects-section__text {
    gap: 0.75rem;
  }

  .projects-section__title {
    font-size: 2.25rem;
    line-height: 1.22;
  }

  .projects-section__description {
    font-size: 14px;
    line-height: 19px;
  }

  .projects-grid {
    width: 100%;
    max-width: 450px;
    gap: 0.75rem;
  }

  .project-card {
    border-radius: var(--radius-card);
  }

  .project-card__media {
    height: 11.125rem;
  }

  .project-card__logo--kryo {
    width: min(85.4%, 17.9375rem);
  }

  .project-card__logo--maison {
    width: min(68.2%, 14.3125rem);
  }

  .project-card__body {
    padding: 1rem 1.5rem 1.5rem;
    gap: 1.5rem;
  }

  .project-card__content h3 {
    font-size: 1.625rem;
  }

  .project-card__content p {
    font-size: 0.75rem;
  }

  .experts-section {
    margin-top: 7.5rem;
    padding-inline: var(--page-padding);
  }

  .experts-section__container {
    width: min(100%, 21rem);
    align-items: flex-start;
    gap: 1.25rem;
  }

  .experts-section__intro {
    width: 100%;
    gap: 0.75rem;
  }

  .experts-section__title {
    font-size: 2.25rem;
    line-height: 1.1;
  }

  .experts-section__description {
    width: 100%;
    font-size: 0.875rem;
  }

  .experts-grid {
    width: 100%;
    gap: 1.25rem;
  }

  .expert-card {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
  }

  .expert-card__image {
    height: 16.9375rem;
  }

  .expert-card__body {
    width: 100%;
    padding: 1.5rem 1rem;
    gap: 2rem;
  }

  .expert-card__heading h3 {
    font-size: 2rem;
  }

  .expert-card__heading p {
    font-size: 1rem;
  }

  .expert-card__list li {
    font-size: 0.875rem;
  }

  .site-footer {
    margin-top: 60px;
    min-height: unset;
    padding: 3.75rem var(--page-padding) 1.5rem;
  }

  .site-footer__container {
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 2.2rem;
  }

  .site-footer__brand {
    width: 100%;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
  }

  .site-footer__brand p {
    width: 100%;
  }

  .site-footer__columns {
    padding: 0 8px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .site-footer__column {
    width: 100%;
    gap: 0.75rem;
  }

  .site-footer__column + .site-footer__column {
    padding-top: 26px;
    border-top: 1px solid rgba(202, 202, 202, 0.34);
  }

  .site-footer__contact,
  .site-footer__additional {
    width: 100%;
  }

  .site-footer__socials {
    margin-bottom: 0;
  }

  .site-footer__copyright {
    margin-top: 40px;
  }
}

@media (max-width: 500px) {
  .about-section__text {
    align-items: center;
    gap: 1rem;
    text-align: center;
  }

  .about-section__text::after {
    content: "";
    width: 100%;
    height: 1px;
    display: block;
    margin-top: -0.25rem;
    background: rgba(202, 202, 202, 0.7);
    order: 4;
  }

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

  .about-section__title {
    font-size: 2.25rem;
    line-height: 1.2;
    text-align: center;
  }

  .about-section__description {
    font-size: 0.875rem;
    line-height: 1.35;
    text-align: center;
  }

  .about-section__main {
    gap: 12px;
  }

  .about-section__list {
    align-items: start;
    gap: 0.75rem;
    order: 2;
  }

  .about-section__list li {
    justify-content: center;
    font-size: 0.875rem;
  }

  .about-section__visual {
    margin-top: 12px;
    width: 100%;
    padding: 0 0.425rem 0.425rem 0;
    order: 3;
  }

  .about-collage {
    width: 100%;
    aspect-ratio: 336 / 311;
  }

  .about-collage__card--main {
    padding-right: 0.425rem;
    padding-bottom: 0.425rem;
  }

  .about-collage__card--main::after {
    margin: 0.425rem -0.425rem -0.425rem 0.425rem;
  }

  .about-collage__card--secondary {
    padding-right: 0.425rem;
    padding-bottom: 0.425rem;
  }

  .about-collage__card--secondary::after {
    margin: 0.425rem -0.425rem -0.425rem 0.425rem;
  }

  .about-section__stats {
    margin-top: 22px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 16px;
    order: 4;
  }

  .about-stat {
    min-height: auto;
  }

  .about-stat + .about-stat {
    padding-left: 0;
    border-left: 0;
  }

  .about-stat + .about-stat::before {
    content: none;
  }

  .about-stat--experience {
    grid-column: 1 / -1;
    grid-row: 2;
    padding-top: 0.1rem;
    border-top: 1px solid var(--color-blue);
  }

  .about-stat:nth-child(2) {
    grid-column: 1;
    grid-row: 1;
  }

  .about-stat:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
  }

  .about-section__stats::before {
    content: "";
    grid-column: 2;
    grid-row: 1;
    width: 1px;
    height: 3.8125rem;
    background: var(--color-blue);
  }

  .about-stat strong {
    font-size: 1.75rem;
    letter-spacing: -0.03em;
  }

  .about-stat span {
    font-size: 0.875rem;
  }

  .about-stat small {
    width: 100%;
    font-size: 0.75rem;
    letter-spacing: -0.02em;
  }

  .about-section__container {
    gap: 15px;
  }

  .about-section__industries {
    gap: 0.35rem;
  }

  .about-section__industries span {
    font-size: 0.75rem;
  }

  .about-stat__popover {
    left: calc(100% - 2.5rem);
  }
}

.hero-section__video::-webkit-media-controls {
  display: none !important;
  opacity: 0 !important;
}

.hero-section__video::-webkit-media-controls-panel {
  display: none !important;
  opacity: 0 !important;
}

.hero-section__video::-webkit-media-controls-play-button {
  display: none !important;
  opacity: 0 !important;
}

.hero-section__video::-webkit-media-controls-start-playback-button {
  display: none !important;
  opacity: 0 !important;
  -webkit-appearance: none;
}
