.site-footer {
  --text: #000000ff;
  --muted: #6b7280;
  --border: #e5e7eb;
  --icon-ring: #ffffffff;

  color: var(--text);
  border-top: 1px solid var(--border);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Inter, Arial,
    sans-serif;
    
}

.site-footer .container {
  
  max-width: 1160px;
  margin: 0 auto;
  padding: 32px 0px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: start;
}

/* Brand / contacts */
.logo img {
  max-width: 200px;
  display: flex;
  left: -8px;
  position: relative;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0;
  line-height: 1.65 !important;
  text-align: left;
  gap: var(--gap);
 
}

.footer-contacts a {
  color: var(--text);
  text-decoration: none;
}

.footer-contacts a:hover {
  color: var(--accent);
}

.footer-contacts address {
  font-style: normal;
  color: var(--text);
}

/* Social icons — outlined circles like in the example */
.footer-social {
  display: flex;
  gap: 12px;
  justify-content: left;
  list-style: none;
  padding: 0;
  gap: var(--gap);
 
}

.footer-social a {
  color: var(--text);
  font-size: 20px;
}

.footer-social a:hover {
  color: var(--accent);
}
/* Right column links */
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--gap);
 
  line-height: 1.65;
}

.footer-links a {
  color: var(--text);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-main {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--gap);
  padding: 0;
  text-align: right;
  line-height: 1.65;
 margin: 16px 0;
}

/* Bottom line */
.footer-bottom {
  

  padding-top: 18px;
  color: var(--muted);
  font-size: 14px;
}

/* Responsive */
@media (max-width: 860px) {
  .footer-row {
    display: flex;
    flex-direction: column;
    align-items: start;
    text-align: center;
  }
  .footer-links {
    justify-self: start;
    text-align: left;
    padding:0;
  
  display: flex;
  position: relative;

}
.hero {
  padding-top: 0 !important;
}
}
/* Optional dark mode (auto) */
@media (prefers-color-scheme: dark) {
  .site-footer {
    --text: #000000ff;
    --muted: #9ca3af;
    --border: #1f2937;
    --icon-ring: #c9d1d9;
    --gap: 22px;
  }
  .icon-btn:hover {
    background: #111827;
  }
}

.partners {
  display: flex;
  flex-direction: column;
}

.partners h2 {
  display: flex;
  flex-direction: column;
  text-align: left;
  justify-content: left;
}

.partners img {
  width: 150px;
}

.partners a {
  display: flex;
  justify-content: center;
}
/* отключаем прокрутку без дёрганья страницы */
.no-scroll {
  position: fixed;
  overflow: hidden;
  width: 100%;
}

.left a {
  color: var(--accent);
}

.left a:hover {
  color: var(--text);
}

.left ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

