* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.footer {
  background: #0f172a;
  color: #cbd5e1;
}

.footer .container {
  max-width: 1444px;
  margin: auto;
  padding: 0 16px;
}

.footer-app {
  background: #2563eb;
  padding: 60px 0;
}

.footer-app .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.app-text h2 {
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
}

.app-text p {
  color: #dbeafe;
  margin-top: 8px;
}

.app-buttons {
  display: flex;
  gap: 16px;
}
.app-button-platform{
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}

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

  padding: 12px 18px;
  border-radius: 12px;

  text-decoration: none;
  color: #ffffff;

  border: 1px solid transparent;
  transition: 0.3s ease;
}

.btn i {
  font-size: 20px;
}

.btn.dark {
  background: #0f172a;
  border-color: #334155;
}

.btn.dark:hover {
  background: #1e293b;
}

.btn.red {
  background: #dc2626;
  border-color: #7f1d1d;
}

.btn.red:hover {
  background: #b91c1c;
}

.btn div span {
  font-size: 10px;
  text-transform: uppercase;
}

.btn div strong {
  font-size: 16px;
}

.footer-main {
  padding: 56px 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}


.logo-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;

  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
}

.logo-title img {
  height: 56px;
}

.desc {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.6;
}

.social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.social a {
  width: 40px;
  height: 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #1e293b;
  border-radius: 50%;

  color: #94a3b8;
  text-decoration: none;

  transition: 0.3s ease;
}

.social a:hover {
  color: #ffffff;
}

.social .fb:hover {
  background: #2563eb;
}
.social .ig:hover {
  background: #db2777;
}
.social .ln:hover {
  background: #1d4ed8;
}
.social .yt:hover {
  background: #dc2626;
}

.footer h4 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 16px;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer ul li a:hover {
  color: #ffffff;
}

.contact {
  display: flex;
  align-items: center;
  gap: 8px;

  color: #cbd5e1;
  text-decoration: none;

  margin-bottom: 10px;
  font-size: 14px;

  transition: 0.3s;
}

.contact:hover {
  color: #ffffff;
}

.contact svg {
  stroke: currentColor;
  width: 16px;
  height: 16px;
}

.icon-phone svg {
  stroke: #3b82f6;
}
.icon-mail svg {
  stroke: #444fef;
}
.icon-msg svg {
  stroke: #22c55e;
}

.footer-bottom {
  border-top: 1px solid #1e293b;

  margin-top: 60px;
  padding-top: 30px;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;

  font-size: 13px;
  color: #94a3b8;
}

.footer-bottom img {
  max-width: 100%;
  border-radius: 8px;
}

@media (max-width: 1024px) {
  .footer-app .container {
    flex-direction: column;
    text-align: center;
  }

  .app-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

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

@media (max-width: 768px) {

  .footer-app {
    padding: 40px 0;
  }

  .app-text h2 {
    font-size: 22px;
  }

  .app-text p {
    font-size: 14px;
  }

  .app-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

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

  .logo-title {
    font-size: 18px;
  }

  .footer-main {
    padding: 40px 0;
  }

  .footer-bottom {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .app-text h2 {
    font-size: 20px;
  }

  .btn {
    padding: 10px 14px;
    font-size: 14px;
  }

  .social {
    justify-content: center;
  }

  .contact {
    font-size: 13px;
  }
}
