/* The reset + base the footer assumes from the global stylesheet (critical.scss),
 * re-rooted at :host / .footer because the Shadow DOM has no <body>. Without this
 * the browser defaults leak in (underlined links, list bullets, default margins,
 * wrong base size) — the SCSS only adds styling on top of this reset.
 */
:host {
  display: block;
  font-family: 'Roboto Flex', 'Arial', sans-serif;
  font-size: 16px;
  line-height: 26px;
  color: var(--color-gray-950, #040505);
  /* Match the live site: default (auto) smoothing renders heavier than
     `antialiased`, which looked too thin on macOS. */
  -webkit-font-smoothing: auto;
  text-rendering: optimizeLegibility;
  --basic-transition-duration: all 0.15s ease-in-out;
}

.footer,
.footer *,
.footer *::before,
.footer *::after {
  margin: 0;
  padding: 0;
  outline: 0;
  box-sizing: border-box;
  font-weight: 400;
  font-style: normal;
  background-repeat: no-repeat;
  background-position: center;
}

.footer li { list-style-type: none; }
.footer a { text-decoration: none; cursor: pointer; color: inherit; }
.footer img { border: 0; display: block; }
.footer button {
  appearance: none;
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  text-decoration: none;
}

/* The footer's .container (from critical.scss), not the Tailwind one */
.footer .container {
  width: 100%;
  margin-inline: auto;
  max-width: 1200px;
  padding-inline: 1.25rem;
}
@media (min-width: 768px) {
  .footer .container { max-width: 1200px; padding-inline: 2.5rem; }
}
@media (min-width: 1024px) {
  .footer .container { max-width: calc(1176px + 6rem); padding-inline: 3rem; }
}

.footer {
  position: relative;
  overflow: hidden;
  background-color: var(--color-gray-950, #040505);
}
.footer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
  border-bottom: 1px solid var(--color-gray-800, #202222);
  padding: 24px 0;
}
.footer__header > p {
  font-family: "Roboto Flex", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0px;
  color: var(--color-gray-950, #040505);
  color: var(--color-gray-400, #9ca0a0);
}
@media screen and (max-width: 1280px) {
  .footer__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 32px 0;
  }
}
.footer__content {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  padding: 32px 0px;
  border-bottom: 1px solid var(--color-gray-600, #3c3e3e);
}
@media screen and (max-width: 1280px) {
  .footer__content {
    flex-direction: column;
    gap: 0;
    padding: 0;
  }
}
.footer__item {
  max-width: 190px;
}
.footer__item--inner {
  margin-top: 40px;
}
.footer__item .footer__links-list .footer__item-large-link {
  margin-top: 28px;
}
.footer__item .footer__links-list .footer__item-large-link a {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0px;
  color: var(--color-gray-950, #040505);
  color: var(--color-gray-50, #fff);
}
.footer__item .footer__links-list .footer__item-large-link a:after {
  content: "";
  display: inline-block;
  position: relative;
  top: 2px;
  width: 14px;
  height: 14px;
  -webkit-transition: width 0.3s, opacity 0.5s;
  transition: width 0.3s, opacity 0.5s;
  background-position: right center;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjMiIGhlaWdodD0iMTQiIHZpZXdCb3g9IjAgMCAyMyAxNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xOC41ODU4IDYuMDAwMDhMMTQuMjkyOSAxLjcwNzE4TDE1LjcwNzEgMC4yOTI5NjlMMjIuNDE0MiA3LjAwMDA4TDE1LjcwNzEgMTMuNzA3MkwxNC4yOTI5IDEyLjI5M0wxOC41ODU4IDguMDAwMDhMMCA4VjYuMDAwMDhIMTguNTg1OFoiIGZpbGw9IndoaXRlIi8+Cjwvc3ZnPgo=");
}
.footer__item .footer__links-list .footer__item-large-link a:hover:after {
  width: 20px;
  opacity: 0.5;
}
@media screen and (max-width: 1280px) {
  .footer__item .footer__links-list .footer__item-large-link {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--color-gray-800, #202222);
    width: 100% !important;
  }
}
.footer__item > p {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0px;
  color: var(--color-gray-950, #040505);
  color: var(--color-gray-400, #9ca0a0);
  margin-bottom: 20px;
}
.footer__item .footer__links-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__item .footer__links-list li {
  line-height: 20px;
}
.footer__item .footer__links-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Roboto Flex", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0px;
  color: var(--color-gray-950, #040505);
  color: var(--color-gray-50, #fff);
  transition: var(--basic-transition-duration);
}
.footer__item .footer__links-list li a .hire-badge {
  padding: 1px 8px;
  border-radius: 24px;
  background: var(--color-gold-500, #ffd400);
  font-family: "Roboto Flex", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0px;
  color: var(--color-gray-950, #040505);
}
.footer__item .footer__links-list li a:hover {
  color: var(--color-gray-400, #9ca0a0);
}
@media screen and (max-width: 1280px) {
  .footer__item .footer__links-list li {
    width: calc(50% - 24px);
  }
  .footer__item .footer__links-list li.long-item {
    width: 100%;
  }
}
@media screen and (max-width: 1280px) {
  .footer__item .footer__links-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px 48px;
  }
}
@media screen and (max-width: 1280px) {
  .footer__item {
    max-width: none;
    padding: 32px 0;
  }
  .footer__item:not(.footer__item--inner) {
    border-bottom: 1px solid var(--color-gray-800, #202222);
  }
  .footer__item.footer__item--inner {
    border-top: 1px solid var(--color-gray-800, #202222);
    margin-top: 32px;
    padding-bottom: 0;
  }
}
.footer__aside {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 1280px) {
  .footer__aside {
    gap: 0;
  }
  .footer__aside .footer__item {
    border-bottom: none;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 1280px) and (max-width: 1280px) {
  .footer__aside .footer__item {
    padding-bottom: 32px;
  }
}
.footer__socials {
  display: flex;
  gap: 4px;
}
.footer__socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  min-width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--color-gray-800, #202222);
  transition: var(--basic-transition-duration);
}
.footer__socials a svg {
  opacity: 1;
  transition: var(--basic-transition-duration);
}
.footer__socials a:hover {
  background-color: #0f0f0f;
}
.footer__socials a:hover svg {
  opacity: 0.6;
}
@media screen and (max-width: 1280px) {
  .footer__socials {
    padding-bottom: 32px;
    border-bottom: 1px solid var(--color-gray-800, #202222);
  }
}
.footer__icons {
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  border-bottom: 1px solid var(--color-gray-900, #161717);
}
.footer__icons-item {
  position: relative;
}
.footer__icons-item-link {
  height: 36px;
  display: flex;
  align-items: center;
  transition: var(--basic-transition-duration);
  opacity: 1;
}
.footer__icons-item-link:hover {
  opacity: 0.6;
}
.footer__icons-item-link:hover + .footer__icons-item-description {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0px);
}
.footer__icons-item-description {
  position: absolute;
  opacity: 0;
  transition: var(--basic-transition-duration);
  left: 0;
  bottom: 100%;
  width: 274px;
  padding: 7px 11px;
  margin-bottom: 13px;
  border-radius: 6px;
  font-family: "Roboto Flex", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0px;
  color: var(--color-gray-950, #040505);
  color: #a6a6a6;
  background-color: #0c0d0d;
  border: 1px solid #141414;
  transform: translateY(-15px);
  pointer-events: none;
}
.footer__icons-item-description.right {
  left: auto;
  right: 0;
}
@media screen and (max-width: 1280px) {
  .footer__icons {
    padding: 32px 0;
    justify-content: center;
    gap: 30px;
  }
}
@media screen and (max-width: 480px) {
  .footer__icons {
    justify-content: space-between;
    gap: 8px 16px;
  }
}
.footer__bottom-info {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__bottom-info > p {
  font-family: "Roboto Flex", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0px;
  color: var(--color-gray-950, #040505);
  color: var(--color-gray-400, #9ca0a0);
}
.footer__bottom-info ul {
  display: flex;
  align-items: center;
  gap: 24px;
}
.footer__bottom-info ul a {
  font-family: "Roboto Flex", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0px;
  color: var(--color-gray-950, #040505);
  color: var(--color-gray-50, #fff);
  white-space: nowrap;
  transition: var(--basic-transition-duration);
}
.footer__bottom-info ul a:hover {
  color: var(--color-gray-400, #9ca0a0);
}
.footer__bottom-info ul ::slotted(a) {
  font-family: "Roboto Flex", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0px;
  color: var(--color-gray-950, #040505);
  color: var(--color-gray-50, #fff) !important;
  white-space: nowrap !important;
  transition: var(--basic-transition-duration) !important;
  text-decoration: none !important;
}
.footer__bottom-info ul ::slotted(a:hover) {
  color: var(--color-gray-400, #9ca0a0) !important;
}
@media screen and (max-width: 800px) {
  .footer__bottom-info ul {
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 800px) {
  .footer__bottom-info {
    padding: 32px 0;
    align-items: normal;
    flex-direction: column-reverse;
  }
}