.hc-footer-new {
  background: var(--bg);
  color: var(--text-dark);
  padding: clamp(50px, 8vw, 90px) 0 30px;
  position: relative;
  overflow: hidden;
}

.hc-footer-new::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(26, 67, 191, 0.08), transparent 55%),
    radial-gradient(circle at 85% 10%, rgba(26, 67, 191, 0.06), transparent 50%);
  pointer-events: none;
}

.hc-footer-new::after {
  content: '';
  position: absolute;
  inset: 0;
  border-top: 1px solid rgba(26, 67, 191, 0.12);
  pointer-events: none;
}

.hc-footer-new__container {
  width: min(1200px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 28px;
  position: relative;
  z-index: 1;
}

.hc-footer-new__brand img {
  height: 86px;
  width: auto;
  display: block;
  margin-bottom: 12px;
}

.hc-footer-new__brand p {
  /*color: #4c4c4c;*/
  color: var(--dark-alt);
  line-height: 1.7;
}

.hc-footer-new__cta {
  margin-top: 18px;
}

.hc-footer-new__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 12px;
  background: var(--brand-blue);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(26, 67, 191, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.hc-footer-new__button:hover {
  background: var(--brand-orange);
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(26, 67, 191, 0.28);
}

.hc-footer-new h4 {
  margin-bottom: 12px;
  font-size: 1.3rem;
  color: var(--brand-blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.hc-footer-new__links a {
  /*color: #2c3a5d;*/
  color: var(--dark-alt);
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  transition: color 0.2s ease;
}

.hc-footer-new__links a:hover {
  color: var(--brand-blue);
}

.hc-footer-new__contact p {
  margin: 0 0 8px;
  /*color: #4c4c4c;*/
  color: var(--dark-alt);
}

.hc-footer-new__contact strong {
  color: var(--brand-blue);
}

.hc-footer-new__social {
  margin-top: 14px;
  display: flex;
  gap: 12px;
}

.hc-footer-new__social a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(26, 67, 191, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-blue);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.hc-footer-new__social a:hover {
  background: var(--brand-blue);
  color: #fff;
  transform: translateY(-2px);
}

.hc-footer-new__social svg {
  width: 18px;
  height: 18px;
}

.hc-footer-new__bottom {
  width: min(1200px, 92%);
  margin: 30px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(26, 67, 191, 0.15);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
  color: var(--brand-blue);
  font-weight: 500;
}

@media (max-width: 1024px) {
  .hc-footer-new__container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .hc-footer-new__container {
    grid-template-columns: 1fr;
  }

  .hc-footer-new__bottom {
    flex-direction: column;
    text-align: center;
  }
}
