.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e9edf2;
}

.site-header > .container.header-inner {
  width: min(1120px, calc(100% - 56px));
  max-width: none;
  height: 76px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 0;
}

.site-header .brand {
  display: flex;
  align-items: center;
  height: auto;
}

.site-header .brand img {
  width: auto;
  max-width: 210px;
  max-height: 58px;
  height: auto;
  display: block;
}

.site-header .main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  margin-left: auto;
  height: 100%;
  font-weight: 700;
  font-size: 14px;
  color: #101827;
  white-space: nowrap;
  overflow: visible;
}

.site-header .main-nav li {
  list-style: none;
  height: 100%;
  display: flex;
  align-items: center;
}

.site-header .main-nav a {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0;
  color: inherit;
  transition: .2s color;
}

.site-header .main-nav a:hover,
.site-header .main-nav .active,
.site-header .main-nav .current-menu-item > a {
  color: #ff4148;
}

.site-header .main-nav .active:after,
.site-header .main-nav .current-menu-item > a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 52px;
  height: 3px;
  border-radius: 3px;
  background: #ff4148;
}

.site-header .header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: 8px;
}

.site-header .icon-btn {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid #dce3ec;
  border-radius: 10px;
  background: #fff;
  color: #0e1b2b;
  cursor: pointer;
}

.site-header .login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 24px;
  border: 0;
  border-radius: 9px;
  background: #ff4148;
  color: #fff;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(255,65,72,.23);
}

.footer {
  background: #f8fafc;
  border-top: 1px solid #ecf0f4;
  padding: 42px 0 20px;
  color: #4c5d70;
}

.footer > .container.footer-grid,
.footer > .container.footer-bottom {
  width: min(1120px, calc(100% - 56px));
  max-width: none;
  margin-inline: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.25fr 1.35fr;
  gap: 70px;
}

.footer-brand img {
  width: auto;
  max-width: 180px;
  max-height: 58px;
  margin-bottom: 18px;
}

.footer p {
  font-size: 13px;
  line-height: 1.7;
  margin: 0 0 18px;
  color: #4c5d70;
}

.footer .socials {
  display: flex;
  gap: 10px;
}

.footer .socials span,
.footer .socials a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid #e4e9ef;
  color: #334154;
  font-size: 11px;
  font-weight: 900;
}

.footer-col h3 {
  margin: 0 0 16px;
  font-size: 13px;
  color: #182333;
}

.footer-col a {
  display: block;
  color: #5d6b7d;
  font-size: 13px;
  margin: 0 0 11px;
}

.footer-col li {
  list-style: none;
}

.footer-col a:hover {
  color: #ff4148;
}

.footer-col.chips div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-col.chips a {
  margin: 0;
  background: #fff;
  border: 1px solid #e6ebf0;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
}

.footer-bottom {
  border-top: 1px solid #e5e9ee;
  margin-top: 34px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #7c8795;
}

.footer-bottom b {
  color: #ff4148;
}

@media (max-width: 1050px) {
  .site-header > .container.header-inner,
  .footer > .container.footer-grid,
  .footer > .container.footer-bottom {
    width: min(100% - 36px, 920px);
  }

  .site-header .main-nav {
    gap: 16px;
    font-size: 13px;
  }

  .site-header .brand img {
    max-width: 170px;
  }

  .footer-grid {
    grid-template-columns: repeat(2,1fr);
    gap: 32px;
  }
}

@media (max-width: 760px) {
  .site-header > .container.header-inner {
    height: auto;
    min-height: 72px;
    flex-wrap: wrap;
    gap: 12px;
    padding: 12px 0;
  }

  .site-header .main-nav {
    order: 3;
    overflow-x: auto;
    width: 100%;
    justify-content: flex-start;
    padding-bottom: 8px;
  }

  .site-header .header-actions {
    margin-left: auto;
  }

  .site-header .login {
    height: 40px;
    padding: 0 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}
