
:root {
  --body-bg: #0a0a0a;
  --text-color: #fff;
  --hover-bg: rgba(255, 255, 255, 0.08);
  --accent-color: #5c34b4;
  --accent-hover: #7b5cff;
  --1: #2a2538;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background: var(--body-bg);
  color: var(--text-color);
}
.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
main {
  flex: 1; 
  padding: 40px;
}

.site-footer {
  width: 100%;
  background: var(--body-bg);
  color: var(--text-color);
  padding: 50px 0 40px;
  font-family: 'Inter', sans-serif;
  margin-top: auto;
}

.footer-inner {
  width: 1160px;
  max-width: 1160px; 
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding: 0 10px; 
}



.footer-left .footer-logo svg {
  width: 200px;
	height: auto;
  margin-left: -10px;
}


.footer-left p {
  font-size: 14px;
  color: var(--text-color);
  margin: 0;
}

.footer-left .accent {
  color: var(--accent-color);
}


.footer-center {
  display: flex;
  gap: 80px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer-col h4 {
  color: var(--text-color);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.footer-col a {
  color: var(--text-color);
  font-size: 14px;
  text-decoration: none;
  transition: 0.25s;
}

.footer-col a:hover {
  color: var(--accent-hover);
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.social-title {
  font-size: 13px;
  color: var(--text-color);
  margin: 0;
}

.social-icons {
  display: flex;
  gap: 10px;
  color: white;
}

.social-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--body-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
  transition: 0.25s;
  font-size: 16px;
}

.social-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

.ask-btn {
  background: var(--accent-color);
  border: none;
  color: var(--text-color);
  font-weight: 600;
  border-radius: 20px;
  padding: 8px 18px;
  cursor: pointer;
  font-size: 13px;
  transition: 0.3s;
}

.ask-btn:hover {
  background: var(--accent-hover);
}


@media (max-width: 900px) and (min-width: 601px) {
  .footer-inner {
    width: 90%;
    flex-direction: row;
    justify-content: space-between;
    gap: 30px;
    padding: 0 15px;
  }

  .footer-center {
    gap: 30px;
  }

  .footer-left .footer-logo svg {
    width: 160px;
  }

  .footer-left p,
  .footer-col a,
  .footer-col h4,
  .social-title {
    font-size: 13px;
  }

  .social-btn {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }

  .ask-btn {
    padding: 7px 16px;
    font-size: 12px;
  }
}

@media (max-width: 600px) and (min-width: 401px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    gap: 25px;
    width: 95%;
    padding: 0 10px;
  }

  .footer-center {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .footer-left .footer-logo svg {
    width: 140px;
  }

  .footer-left p,
  .footer-col a,
  .footer-col h4,
  .social-title {
    font-size: 12px;
  }

  .social-btn {
    width: 26px;
    height: 26px;
    font-size: 13px;
  }

  .ask-btn {
    padding: 6px 14px;
    font-size: 12px;
  }
}

@media (max-width: 400px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
    padding: 0 5px;
  }

  .footer-center {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .footer-left .footer-logo svg {
    width: 120px;
  }

  .footer-left p,
  .footer-col a,
  .footer-col h4,
  .social-title {
    font-size: 11px;
  }

  .social-btn {
    width: 24px;
    height: 24px;
    font-size: 12px;
  }

  .ask-btn {
    padding: 5px 12px;
    font-size: 11px;
  }
}
