.nd-foot {
  background: var(--nd-bg);
  border-top: 1px solid var(--nd-border);
}

.nd-foot-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 72px 32px 32px;
}

.nd-foot-top {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--nd-border);
}

.nd-foot-brand { min-width: 0; }

.nd-foot-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  text-decoration: none;
}

.nd-foot-brand-mark {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--nd-accent);
  flex-shrink: 0;
}

.nd-foot-brand-name {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.2px;
  color: var(--nd-text);
}

.nd-foot-brand img {
  display: block;
  height: 30px;
  width: auto;
  max-width: 200px;
  margin-bottom: 18px;
}

.nd-foot-tagline {
  margin: 0 0 24px;
  max-width: 300px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--nd-muted);
}

.nd-foot-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nd-foot-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--nd-muted);
  border: 1px solid var(--nd-border);
  border-radius: 6px;
  transition: color 160ms ease, border-color 160ms ease;
}

.nd-foot-social-link:hover {
  color: var(--nd-accent);
  border-color: var(--nd-accent);
}

.nd-foot-social-link svg {
  width: 17px;
  height: 17px;
}

.nd-foot-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  min-width: 0;
}

.nd-foot-col { min-width: 0; }

.nd-foot-col-title {
  margin: 0 0 16px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--nd-text);
}

.nd-foot-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nd-foot-list li { margin-bottom: 11px; }

.nd-foot-list li:last-child { margin-bottom: 0; }

.nd-foot-list a {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--nd-muted);
  text-decoration: none;
  transition: color 160ms ease;
}

.nd-foot-list a:hover { color: var(--nd-accent); }

.nd-foot-news { min-width: 0; }

.nd-foot-news-title {
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--nd-text);
}

.nd-foot-form {
  display: flex;
  gap: 8px;
}

.nd-foot-hp {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.nd-foot-input {
  flex: 1;
  min-width: 0;
  height: 42px;
  padding: 0 13px;
  font-size: 14px;
  line-height: 42px;
  color: var(--nd-text);
  background: var(--nd-bg-raised);
  border: 1px solid var(--nd-border);
  border-radius: 6px;
  outline: none;
  transition: border-color 160ms ease;
  -webkit-appearance: none;
  appearance: none;
}

.nd-foot-input::placeholder { color: var(--nd-muted); }

.nd-foot-input:focus { border-color: var(--nd-accent); }

.nd-foot-btn {
  flex-shrink: 0;
  height: 42px;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1px;
  color: var(--nd-accent-ink);
  background: var(--nd-accent);
  border: 1px solid var(--nd-accent);
  border-radius: 6px;
  cursor: pointer;
  transition: opacity 160ms ease;
}

.nd-foot-btn:hover { opacity: 0.86; }

.nd-foot-btn:disabled { opacity: 0.55; cursor: default; }

.nd-foot-news-msg {
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--nd-accent);
}

.nd-foot-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 28px;
}

.nd-foot-copy {
  margin: 0;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.2px;
  color: var(--nd-muted);
}

.nd-foot-legal {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nd-foot-legal a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.2px;
  color: var(--nd-muted);
  text-decoration: none;
  transition: color 160ms ease;
}

.nd-foot-legal a:hover { color: var(--nd-accent); }

@media (max-width: 1080px) {
  .nd-foot-inner { padding: 64px 24px 28px; }
  .nd-foot-top { gap: 40px; }
  .nd-foot-nav { gap: 24px; }
}

@media (max-width: 900px) {
  .nd-foot-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 44px 32px;
  }
  .nd-foot-news { grid-column: 1 / -1; max-width: 420px; }
}

@media (max-width: 640px) {
  .nd-foot-inner { padding: 48px 16px 24px; }
  .nd-foot-top {
    grid-template-columns: minmax(0, 1fr);
    gap: 36px;
    padding-bottom: 32px;
  }
  .nd-foot-tagline { max-width: 100%; }
  .nd-foot-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 24px;
  }
  .nd-foot-news { max-width: 100%; }
  .nd-foot-form { flex-direction: column; }
  .nd-foot-input { height: 46px; line-height: 46px; }
  .nd-foot-btn { height: 46px; width: 100%; }
  .nd-foot-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-top: 24px;
  }
  .nd-foot-legal { gap: 16px; }
}
