footer {
  background: #0a0a0b;
  color: #fff;
  padding: 56px 40px 0;
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
}

.brand-logo {
  margin-bottom: 18px;
}

.brand-logo img {
  height: 55px;
  width: auto;
  display: block;
}

.brand-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: #a1a1a6;
  max-width: 290px;
  padding-top: 16px;
  margin: 0 0 22px 0;
}

.get-in-touch {
  font-size: 12px;
  font-weight: 600;
  color: #ee1111;
  letter-spacing: 0.6px;
  padding-top: 12px;
  margin: 0 0 14px 0;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 13.5px;
  padding-top: 2px;
  color: #e5e5e7;
}

.contact-row svg {
  color: #a1a1a6;
  flex: 0 0 auto;
  margin-top: 2px;
}

.footer-links-row {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.footer-links-row a {
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
}

.footer-links-row a:hover {
  color: #ee1111;
}

.col-heading {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.6px;
  color: #fff;
  margin: 0 0 18px 0;
}

.link-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.link-list a {
  color: #a1a1a6;
  font-size: 13.5px;
  text-decoration: none;
}

.link-list a:hover {
  color: #fff;
}

.app-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}

.app-badge {
  display: flex;
  align-items: center;
  border-radius: 8px;
  cursor: pointer;
  width: fit-content;
}

.app-badge img {
  display: block;
  max-width: 150px;
  height: auto;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 26px;
  font-size: 12.5px;
}

.stars {
  color: #ee1111;
  letter-spacing: 1px;
  font-size: 13px;
}

.rating-row .score {
  font-weight: 700;
  color: #fff;
}

.rating-row .count {
  color: #a1a1a6;
}

.social-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #232326;
  color: #c7c7cc;
  transition: border-color 0.15s ease, color 0.15s ease;
  text-decoration: none;
}

.social-btn:hover {
  border-color: #ee1111;
  color: #ee1111;
}

.social-btn svg {
  width: 16px;
  height: 16px;
}

.footer-bottom {
  border-top: 1px solid #232326;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom .copyright {
  font-size: 12.5px;
  color: #6b6b70;
}

.footer-bottom .legal-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-bottom .legal-links a {
  font-size: 12.5px;
  color: #a1a1a6;
  text-decoration: none;
}

.footer-bottom .legal-links a:hover {
  color: #fff;
}

@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 36px;
  }
}

@media (max-width: 640px) {
  footer {
    padding: 44px 22px 0;
  }

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

  .brand-desc {
    max-width: 100%;
  }

  .footer-links-row {
    gap: 18px;
  }

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

  .footer-bottom .legal-links {
    gap: 16px;
  }
}
