@charset "UTF-8";
:root {
  --header-height: 6.7rem;
}
@media (width > 768px) {
  :root {
    --header-height: 11.2rem;
  }
}

/**
 * Product Landing — minimal dark footer (Figma 10497-246665). Mobile-first.
 */
.pl-footer {
  width: 100%;
  background: var(--black-main);
  color: var(--white-main);
  direction: rtl;
}
.pl-footer__inner {
  padding: 2.4rem 2rem;
}
@media (width > 768px) {
  .pl-footer__inner {
    padding: 3.2rem 8rem;
  }
}
.pl-footer__top {
  display: flex;
  justify-content: flex-start;
  padding-bottom: 2rem;
}
.pl-footer__logo {
  display: inline-flex;
  line-height: 0;
}
.pl-footer__logo svg {
  height: 2.4rem;
  width: auto;
}
.pl-footer__logo svg path,
.pl-footer__logo svg g {
  fill: var(--white-main);
}
.pl-footer__bottom {
  display: flex;
  flex-direction: column-reverse;
  gap: 1.6rem;
  padding-top: 2.4rem;
  border-top: 1px solid var(--black-60);
}
@media (width > 768px) {
  .pl-footer__bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2.4rem;
  }
}
.pl-footer__credit {
  margin: 0;
  font-size: 1.3rem;
  color: var(--black-20);
}
.pl-footer__credit a {
  color: var(--black-20);
  text-decoration: none;
}
.pl-footer__credit a:hover {
  color: var(--white-main);
}
.pl-footer__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.6rem;
  font-size: 1.3rem;
}
@media (width > 768px) {
  .pl-footer__legal {
    justify-content: center;
  }
}
.pl-footer__copyright {
  color: var(--black-20);
}
.pl-footer__legal-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
}
.pl-footer__legal-item a {
  color: var(--white-main);
  text-decoration: underline;
}
.pl-footer__legal-item a:hover {
  opacity: 0.8;
}
.pl-footer__social {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.pl-footer__social-icon {
  display: inline-flex;
  line-height: 0;
}
.pl-footer__social-icon img {
  width: 1.8rem;
  height: 1.8rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.pl-footer__social-icon:hover {
  opacity: 0.8;
}
