.footer-site-v2 {
  background: #0b1120;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
  padding: 64px 24px;
  font-family: "Roboto", sans-serif;

  .container {
    max-width: 1280px;
    margin: 0 auto;
  }

  .top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
  }

  .brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    max-width: 384px;
  }

  .logo {
    height: 40px;
    width: auto;
  }

  .description {
    margin: 0;
    color: #fff;
    font-size: 16px;
    line-height: 24px;
  }

  .socials {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .social {
    display: inline-flex;
    color: #90a1b9;
    opacity: 0.85;
  }

  .social:hover {
    color: #ffffff;
    opacity: 1;
  }

  .social img {
    display: block;
    width: 24px;
    height: 24px;
  }

  .columns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }

  .column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    min-width: 192px;
  }

  .heading {
    margin: 0;
    color: #ff6200;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 1px;
    font-weight: 400;
  }

  .link {
    color: #cad5e2;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;

    &:hover {
      color: #e2e8f0;
      text-decoration: underline;
      text-decoration-color: #ff6200;
      text-underline-offset: 3px;
    }

    &:active {
      color: #ff6200;
    }
  }

  .bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .copyright {
    margin: 0;
    color: #94a3b8;
    font-size: 14px;
    line-height: 18px;
  }

  .legal {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
  }

  .legal-link {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
  }

  .legal-link:hover {
    text-decoration: underline;
  }

  .legal-link:active {
    color: #ff6200;
  }

  @media (max-width: 768px) {
    .top {
      flex-direction: column;
    }

    .columns {
      gap: 32px;
    }

    .bottom {
      flex-direction: column;
      align-items: flex-start;
    }
  }

  @media (max-width: 639px) {
    padding: 48px 24px;

    .description {
      color: #cbd5e1;
    }

    .copyright,
    .legal-link {
      font-size: 12px;
      line-height: 16px;
      color: #62748e;
    }
  }
}
