﻿body {
    margin: 0;
    font-family: 'Onest', sans-serif;
    color: #0f172a;
    background: #fff;
    line-height: 1.55;
  }

  img {
    max-width: 100%;
    height: auto;
    display: block;
  }

  a {
    color: inherit;
    text-decoration: none;
  }

  ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  /* ===================== FOOTER ===================== */
  .footer {
    background: linear-gradient(180deg, #ffffff 0%, #d6ebff 60%, #b5dbff 100%);
  }

  .footer__top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 22px 0;
    border-top: 1px solid #e5e9f0;
    align-items: start;
    text-align: left;
  }

  .footer__col {
    display: flex;
    flex-direction: column;
    padding-bottom: 24px;
  }

  .footer__col--left {
    align-items: flex-start;
    text-align: left;
  }

  .footer__col--center {
    align-items: center;
    text-align: center;
  }

  .footer__col--right {
    align-items: flex-end;
    text-align: right;
  }

  .footer__phones {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .footer__contact-item {
    display: flex;
    gap: 8px;
    margin: 6px 0;
    align-items: center;
  }

  .footer__address {
    font-style: normal;
  }

  .footer__bottom {
    padding: 22px 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .footer__logo-link {
    text-decoration: none;
    display: inline-block;
  }

  .footer__logo {
    height: 52px;
    margin-bottom: 10px;
  }

  .footer__company-info {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 12px;
  }

  .footer__company-info-item {
    color: #64748b;
    white-space: nowrap;
  }

  .footer__nav-title {
    margin: 0 0 8px;
  }

  .footer__nav-list li {
    margin-bottom: 6px;
  }

  /* Подчеркивание ссылок */
  .footer__link {
    position: relative;
    transition: color 0.3s ease;
  }

  .footer__link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: var(--blue);
    transition: width 0.3s ease;
  }

  .footer__link:hover {
    color: var(--blue);
  }

  .footer__link:hover::after {
    width: 100%;
  }

  .footer__social {
    display: flex;
    gap: 12px;
    justify-content: center;
  }

  .footer__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
  }

  .footer__social-link:hover {
    transform: translateY(-3px);
  }

  .footer__worktime {
    color: #64748b;
    margin: 6px 0;
    text-align: left;
  }

  .footer__region {
    color: #64748b;
    margin: 6px 0;
    text-align: left;
  }

  .footer__social img {
    width: 26px;
    height: 26px;
    display: block;
  }

  .footer__bottom-links {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer__dot {
    opacity: 0.5;
    font-size: 18px;
    line-height: 1;
  }

  @media (max-width: 920px) {
    .footer__top {
      grid-template-columns: 1fr;
      row-gap: 20px;
      justify-items: center;
      text-align: center;
    }

    .footer__worktime {
      text-align: center !important;
    }

    .footer__col {
      align-items: center !important;
      text-align: center !important;
      padding-bottom: 16px;
    }

    .footer__contact-item {
      justify-content: center;
    }

    .footer__social {
      justify-content: center;
    }
  }

  @media (max-width: 540px) {
    .footer__col {
      padding: 10px 0;
    }

    .footer__logo {
      height: 46px;
    }

    .footer__contact-item img {
      width: 16px;
      height: 16px;
    }

    .footer__social-link {
      width: 40px;
      height: 40px;
    }

    .footer__social img {
      width: 24px;
      height: 24px;
    }
  }

