/* ============================================================
   VEKTOR — Professional Footer (shared)
   ============================================================ */

.vs-footer {
  margin: 56px 0 24px;
  border-radius: 36px;
  padding: 56px 44px 36px;
  background: linear-gradient(160deg, #1a1c1f 0%, #15171a 60%, #101214 100%);
  color: rgba(255, 255, 255, 0.78);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 40px 80px -28px rgba(20, 22, 26, 0.5);
}
.vs-footer::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 12% 12%, rgba(66, 133, 244, 0.16), transparent 26%),
    radial-gradient(circle at 88% 86%, rgba(251, 188, 4, 0.12), transparent 26%),
    radial-gradient(circle at 60% 30%, rgba(52, 168, 83, 0.08), transparent 28%);
  pointer-events: none;
  z-index: -1;
}
.vs-footer::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mix-blend-mode: overlay;
  opacity: 0.6;
  z-index: -1;
  pointer-events: none;
}

.vs-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 1fr)) minmax(0, 1.1fr);
  gap: 48px;
  align-items: start;
}

.vs-footer__brand .vs-footer__brand-row {
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 16px;
}
.vs-footer__brand img.logo-mark {
  width: 44px; height: 44px; border-radius: 14px; object-fit: contain;
  background: rgba(255, 255, 255, 0.08); padding: 4px;
}
.vs-footer__brand .logo-text {
  width: 152px; height: auto; filter: brightness(0) invert(1);
}
.vs-footer__brand p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.66);
  max-width: 30ch;
  margin: 0 0 18px;
}

.vs-footer__social {
  display: flex; gap: 10px; align-items: center;
}
.vs-footer__social a {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition:
    background 0.3s var(--ease-out-quart, ease),
    border-color 0.3s var(--ease-out-quart, ease),
    color 0.3s var(--ease-out-quart, ease),
    transform 0.3s var(--ease-out-back, ease);
}
.vs-footer__social a:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(244, 198, 87, 0.6);
  color: #ffd877;
  transform: translateY(-2px);
}
.vs-footer__social svg { width: 16px; height: 16px; display: block; }

.vs-footer__col h4 {
  margin: 0 0 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.46);
}
.vs-footer__col ul {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  gap: 10px;
}
.vs-footer__col li a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14.5px;
  letter-spacing: -0.005em;
  transition: color 0.25s var(--ease-out-quart, ease), padding-left 0.3s var(--ease-out-back, ease);
  display: inline-block;
}
.vs-footer__col li a:hover {
  color: #ffd877;
  padding-left: 4px;
}

.vs-footer__newsletter h4 { color: rgba(255, 255, 255, 0.46); margin-bottom: 18px; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 700; }
.vs-footer__newsletter p {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.66);
  margin: 0 0 16px;
  max-width: 28ch;
}
.vs-footer__form {
  position: relative;
  display: flex;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 6px 6px 6px 18px;
  align-items: center;
  transition: border-color 0.3s var(--ease-out-quart, ease), background 0.3s var(--ease-out-quart, ease);
  max-width: 340px;
}
.vs-footer__form:focus-within {
  border-color: rgba(244, 198, 87, 0.6);
  background: rgba(255, 255, 255, 0.1);
}
.vs-footer__form input {
  flex: 1;
  background: transparent;
  border: 0; outline: 0;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  letter-spacing: 0.01em;
  padding: 10px 4px;
  min-width: 0;
}
.vs-footer__form input::placeholder { color: rgba(255, 255, 255, 0.42); }
.vs-footer__form button {
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  background: linear-gradient(135deg, #f4c657, #f0a82a);
  color: #1a1c1f;
  letter-spacing: 0.02em;
  transition: transform 0.3s var(--ease-out-back, ease), box-shadow 0.3s var(--ease-out-quart, ease), filter 0.25s ease;
}
.vs-footer__form button:hover {
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 14px 26px -10px rgba(244, 198, 87, 0.5);
  filter: brightness(1.05);
}
.vs-footer__newsletter .vs-footer__msg {
  margin-top: 10px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.6);
  min-height: 18px;
}
.vs-footer__newsletter .vs-footer__msg.is-ok { color: #6ddf8a; }
.vs-footer__newsletter .vs-footer__msg.is-err { color: #f0a497; }

.vs-footer__divider {
  margin: 40px 0 22px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.14), transparent);
}

.vs-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}
.vs-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.vs-footer__legal a {
  color: rgba(255, 255, 255, 0.58);
  text-decoration: none;
  transition: color 0.25s var(--ease-out-quart, ease);
}
.vs-footer__legal a:hover { color: #ffd877; }
.vs-footer__locale {
  display: inline-flex; align-items: center; gap: 8px;
}
.vs-footer__locale-dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: #34a853;
  box-shadow: 0 0 0 4px rgba(52, 168, 83, 0.18);
}

@media (max-width: 1100px) {
  .vs-footer__top {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr);
    gap: 36px;
  }
  .vs-footer__newsletter { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  .vs-footer { padding: 40px 26px 28px; border-radius: 28px; margin: 36px 0 18px; }
  .vs-footer__top { grid-template-columns: 1fr; gap: 28px; }
  .vs-footer__brand p { max-width: none; }
  .vs-footer__bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
}
