footer.softpoint-footer,
footer.softpoint-footer * {
  box-sizing: border-box;
}
footer.softpoint-footer {
  margin: 0;
  padding: 4rem 0 0;
  background: linear-gradient(to bottom, #fff 0%, #f5b6b0 100%);
  color: #000;
  width: 100%;
}

footer.softpoint-footer .softpoint-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

footer.softpoint-footer .softpoint-content {
  display: grid;
  grid-template-columns: 220px repeat(4, 1fr);
  gap: 3rem 2.5rem;
  margin-bottom: 2rem;
  align-items: start;
}

footer.softpoint-footer .softpoint-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
footer.softpoint-footer .softpoint-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: transparent;
  width: 190px;
  height: auto;
  transition: transform .3s;
}
footer.softpoint-footer .softpoint-logo:hover {
  transform: scale(1.05);
}
footer.softpoint-footer .softpoint-logo img {
  width: 158px;
  height: 80px;
  max-width: 100%;
  display: block;
  object-fit: contain;
}

footer.softpoint-footer .softpoint-social {
  display: flex;
  gap: .75rem;
  justify-content: center;
}
footer.softpoint-footer .softpoint-social a {
  width: 40px;
  height: 40px;
  background: rgba(90, 53, 53, .1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 1rem;
  transition: all .3s;
  text-decoration: none;
}
footer.softpoint-footer .softpoint-social a:hover {
  background: #f5b6b0;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(245, 182, 176, .5);
}

footer.softpoint-footer .softpoint-col h3 {
  font-size: 1.1rem;
  margin: 0 0 1.2rem;
  color: #c0665e;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  position: relative;
  padding-bottom: .6rem;
}
footer.softpoint-footer .softpoint-col h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 2px;
  background: #f5b6b0;
}
footer.softpoint-footer .softpoint-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
footer.softpoint-footer .softpoint-col ul li {
  margin-bottom: .75rem;
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  line-height: 1.5;
  font-size: .93rem;
}
footer.softpoint-footer .softpoint-col ul li i {
  color: #f5b6b0;
  width: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}
footer.softpoint-footer .softpoint-col a {
  color: #000;
  text-decoration: none;
  transition: color .2s, transform .2s;
  display: inline-block;
}
footer.softpoint-footer .softpoint-col a:hover {
  color: #c0665e;
  transform: translateX(3px);
}
footer.softpoint-footer .softpoint-col p {
  font-size: .92rem;
  color: #000;
  line-height: 1.6;
  margin: 0 0 1rem;
}

footer.softpoint-footer .softpoint-news {
  display: flex;
  gap: .5rem;
  margin-top: .5rem;
}
footer.softpoint-footer .softpoint-news input {
  flex: 1;
  padding: .75rem 1rem;
  border: none;
  border-radius: 6px;
  background: #fff;
  color: #000;
  font-size: .9rem;
  outline: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
}
footer.softpoint-footer .softpoint-news input::placeholder {
  color: #bba5a5;
}
footer.softpoint-footer .softpoint-news button {
  padding: .75rem 1.4rem;
  background: #c0665e;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: .9rem;
  transition: background .3s, transform .2s;
  white-space: nowrap;
}
footer.softpoint-footer .softpoint-news button:hover {
  background: #a8524b;
  transform: scale(1.03);
}

footer.softpoint-footer .softpoint-bottom {
  text-align: center;
  padding: 1.2rem 2rem;
  margin-top: .5rem;
  background: rgba(90, 53, 53, .07);
  font-size: .85rem;
  color: #000;
}

.sp-fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}
.sp-fade-up.sp-visible {
  opacity: 1;
  transform: translateY(0);
}
.sp-fade-up:nth-child(1) { transition-delay: 0s; }
.sp-fade-up:nth-child(2) { transition-delay: 0.1s; }
.sp-fade-up:nth-child(3) { transition-delay: 0.2s; }
.sp-fade-up:nth-child(4) { transition-delay: 0.3s; }
.sp-fade-up:nth-child(5) { transition-delay: 0.4s; }

.sp-fade-bottom {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.5s, transform 0.6s ease 0.5s;
}
.sp-fade-bottom.sp-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  footer.softpoint-footer .softpoint-content {
    grid-template-columns: repeat(3, 1fr);
  }
  footer.softpoint-footer .softpoint-logo-wrap {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: flex-start;
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  footer.softpoint-footer .softpoint-content {
    grid-template-columns: repeat(2, 1fr);
  }
  footer.softpoint-footer .softpoint-logo-wrap {
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 520px) {
  footer.softpoint-footer {
    padding: 3rem 0 0;
    text-align: center;
  }
  footer.softpoint-footer .softpoint-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    justify-items: center;
    text-align: center;
  }
  footer.softpoint-footer .softpoint-col h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  footer.softpoint-footer .softpoint-col ul li {
    justify-content: center;
  }
  footer.softpoint-footer .softpoint-logo-wrap {
    align-items: center;
  }
  footer.softpoint-footer .softpoint-news {
    flex-direction: column;
    align-items: stretch;
  }
}
